xref: /illumos-gate/usr/src/cmd/tr/Makefile (revision 55fea89dcaa64928bed4327112404dcb3e07b79f)
1163bd69bSGarrett D'Amore#
25aec55ebSGarrett D'Amore# This file and its contents are supplied under the terms of the
35aec55ebSGarrett D'Amore# Common Development and Distribution License ("CDDL"), version 1.0.
45aec55ebSGarrett D'Amore# You may only use this file in accordance with the terms of version
55aec55ebSGarrett D'Amore# 1.0 of the CDDL.
6163bd69bSGarrett D'Amore#
75aec55ebSGarrett D'Amore# A full copy of the text of the CDDL should have accompanied this
85aec55ebSGarrett D'Amore# source.  A copy of the CDDL is also available via the Internet
95aec55ebSGarrett D'Amore# at http://www.illumos.org/license/CDDL.
10163bd69bSGarrett D'Amore#
115aec55ebSGarrett 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
29*bd0ce624SYuri PankovCSTD=	$(CSTD_GNU99)
30163bd69bSGarrett D'AmoreCPPFLAGS +=	-D_ILLUMOS_PRIVATE -I.
31163bd69bSGarrett D'Amore
32163bd69bSGarrett D'Amore# install rules
33163bd69bSGarrett D'Amore$(ROOTINC)/% : %
34163bd69bSGarrett D'Amore	$(INS.file)
35163bd69bSGarrett D'Amore
36163bd69bSGarrett D'Amore.KEEP_STATE:
37163bd69bSGarrett D'Amore
38163bd69bSGarrett D'Amore.PARALLEL: $(OBJS)
39163bd69bSGarrett D'Amore
40163bd69bSGarrett D'Amoreall:		$(PROG)
41163bd69bSGarrett D'Amore
42163bd69bSGarrett D'Amore$(PROG):	$(OBJS)
43163bd69bSGarrett D'Amore	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
44163bd69bSGarrett D'Amore	$(POST_PROCESS)
45163bd69bSGarrett D'Amore
46163bd69bSGarrett D'Amoreinstall: all .WAIT $(ROOTPROG) $(ROOTXPG4PROG) $(ROOTXPG6PROG)
47163bd69bSGarrett D'Amore
48163bd69bSGarrett D'Amore$(ROOTXPG4PROG) $(ROOTXPG6PROG):
49163bd69bSGarrett D'Amore	-$(RM) $@
50163bd69bSGarrett D'Amore	-$(LN) -s ../../bin/$(PROG) $@
51163bd69bSGarrett D'Amore
52163bd69bSGarrett D'Amoreclean:
53163bd69bSGarrett D'Amore	$(RM) $(OBJS)
54163bd69bSGarrett D'Amore
55163bd69bSGarrett D'Amoreinclude ../Makefile.targ
56