Makefile revision 5aec55eb0591d2fcdd38d7dd5408a6ff3456e596
464N/A#
464N/A# This file and its contents are supplied under the terms of the
464N/A# Common Development and Distribution License ("CDDL"), version 1.0.
464N/A# You may only use this file in accordance with the terms of version
464N/A# 1.0 of the CDDL.
464N/A#
464N/A# A full copy of the text of the CDDL should have accompanied this
464N/A# source. A copy of the CDDL is also available via the Internet
464N/A# at http://www.illumos.org/license/CDDL.
464N/A#
464N/A
464N/A#
464N/A# Copyright 2010 Nexenta Systems, Inc. All rights reserved.
464N/A#
464N/A
464N/A
464N/APROG= tr
464N/AXPG4PROG= $(PROG)
464N/AXPG6PROG= $(PROG)
464N/A
464N/AOBJS= tr.o str.o cset.o cmap.o
464N/ASRCS= $(OBJS:%.o=%.c)
464N/A
464N/Ainclude ../Makefile.cmd
464N/A
464N/ACLOBBERFILES= $(PROG)
464N/A
464N/A
464N/AC99MODE= -xc99=%all
464N/AC99LMODE= -Xc99=%all
464N/ACPPFLAGS += -D_ILLUMOS_PRIVATE -I.
464N/ALINTFLAGS += -D_ILLUMOS_PRIVATE -I.
493N/A
464N/A# install rules
464N/A$(ROOTINC)/% : %
464N/A $(INS.file)
493N/A
464N/A.KEEP_STATE:
464N/A
493N/A.PARALLEL: $(OBJS)
464N/A
464N/Aall: $(PROG)
464N/A
464N/A$(PROG): $(OBJS)
464N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
464N/A $(POST_PROCESS)
493N/A
493N/Ainstall: all .WAIT $(ROOTPROG) $(ROOTXPG4PROG) $(ROOTXPG6PROG)
464N/A
464N/A$(ROOTXPG4PROG) $(ROOTXPG6PROG):
-$(RM) $@
-$(LN) -s ../../bin/$(PROG) $@
lint: lint_SRCS
clean:
$(RM) $(OBJS)
include ../Makefile.targ