1163bd69bSGarrett D'Amore# 2*5aec55ebSGarrett D'Amore# This file and its contents are supplied under the terms of the 3*5aec55ebSGarrett D'Amore# Common Development and Distribution License ("CDDL"), version 1.0. 4*5aec55ebSGarrett D'Amore# You may only use this file in accordance with the terms of version 5*5aec55ebSGarrett D'Amore# 1.0 of the CDDL. 6163bd69bSGarrett D'Amore# 7*5aec55ebSGarrett D'Amore# A full copy of the text of the CDDL should have accompanied this 8*5aec55ebSGarrett D'Amore# source. A copy of the CDDL is also available via the Internet 9*5aec55ebSGarrett D'Amore# at http://www.illumos.org/license/CDDL. 10163bd69bSGarrett D'Amore# 11*5aec55ebSGarrett D'Amore 12163bd69bSGarrett D'Amore# 13163bd69bSGarrett D'Amore# Copyright 2010 Nexenta Systems, Inc. All rights reserved. 14163bd69bSGarrett D'Amore# 15163bd69bSGarrett D'Amore 16163bd69bSGarrett D'Amore 17163bd69bSGarrett D'AmorePROG= tr 18163bd69bSGarrett D'AmoreXPG4PROG= $(PROG) 19163bd69bSGarrett D'AmoreXPG6PROG= $(PROG) 20163bd69bSGarrett D'Amore 21163bd69bSGarrett D'AmoreOBJS= tr.o str.o cset.o cmap.o 22163bd69bSGarrett D'AmoreSRCS= $(OBJS:%.o=%.c) 23163bd69bSGarrett D'Amore 24163bd69bSGarrett D'Amoreinclude ../Makefile.cmd 25163bd69bSGarrett D'Amore 26163bd69bSGarrett D'AmoreCLOBBERFILES= $(PROG) 27163bd69bSGarrett D'Amore 28163bd69bSGarrett D'Amore 29163bd69bSGarrett D'AmoreC99MODE= -xc99=%all 30163bd69bSGarrett D'AmoreC99LMODE= -Xc99=%all 31163bd69bSGarrett D'AmoreCPPFLAGS += -D_ILLUMOS_PRIVATE -I. 32163bd69bSGarrett D'AmoreLINTFLAGS += -D_ILLUMOS_PRIVATE -I. 33163bd69bSGarrett D'Amore 34163bd69bSGarrett D'Amore# install rules 35163bd69bSGarrett D'Amore$(ROOTINC)/% : % 36163bd69bSGarrett D'Amore $(INS.file) 37163bd69bSGarrett D'Amore 38163bd69bSGarrett D'Amore.KEEP_STATE: 39163bd69bSGarrett D'Amore 40163bd69bSGarrett D'Amore.PARALLEL: $(OBJS) 41163bd69bSGarrett D'Amore 42163bd69bSGarrett D'Amoreall: $(PROG) 43163bd69bSGarrett D'Amore 44163bd69bSGarrett D'Amore$(PROG): $(OBJS) 45163bd69bSGarrett D'Amore $(LINK.c) $(OBJS) -o $@ $(LDLIBS) 46163bd69bSGarrett D'Amore $(POST_PROCESS) 47163bd69bSGarrett D'Amore 48163bd69bSGarrett D'Amoreinstall: all .WAIT $(ROOTPROG) $(ROOTXPG4PROG) $(ROOTXPG6PROG) 49163bd69bSGarrett D'Amore 50163bd69bSGarrett D'Amore$(ROOTXPG4PROG) $(ROOTXPG6PROG): 51163bd69bSGarrett D'Amore -$(RM) $@ 52163bd69bSGarrett D'Amore -$(LN) -s ../../bin/$(PROG) $@ 53163bd69bSGarrett D'Amore 54163bd69bSGarrett D'Amorelint: lint_SRCS 55163bd69bSGarrett D'Amore 56163bd69bSGarrett D'Amoreclean: 57163bd69bSGarrett D'Amore $(RM) $(OBJS) 58163bd69bSGarrett D'Amore 59163bd69bSGarrett D'Amoreinclude ../Makefile.targ 60