Makefile revision 01335b0d1c4e0c0f16325a830b24ea2a4076fd38
195N/A#
195N/A# This file and its contents are supplied under the terms of the
195N/A# Common Development and Distribution License ("CDDL"), version 1.0.
195N/A# You may only use this file in accordance with the terms version
195N/A# 1.0 of the CDDL.
195N/A#
195N/A# A full copy of the text of the CDDL should have accompanied this
195N/A# source. A copy of the CDDL is also available via the Internet at
195N/A# http://www.illumos.org/license/CDDL.
195N/A#
195N/A
195N/A#
195N/A# Copyright 2010 Nexenta Systems, Inc. All rights reserved.
195N/A#
195N/APROG= od
195N/AXPG4PROG= $(PROG)
195N/A
195N/AOBJS= od.o
195N/ASRCS= $(OBJS:%.o=%.c)
195N/A
3643N/Ainclude ../Makefile.cmd
195N/A
5123N/ACLOBBERFILES= $(PROG)
195N/A
195N/A
195N/AC99MODE= -xc99=%all
3883N/AC99LMODE= -Xc99=%all
618N/ACPPFLAGS += -D__EXTENSIONS__ -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
195N/ALINTFLAGS += -D__EXTENSIONS__
195N/A
844N/A# install rules
3883N/A$(ROOTINC)/% : %
195N/A $(INS.file)
1258N/A
195N/A.KEEP_STATE:
778N/A
778N/A.PARALLEL: $(OBJS)
844N/A
3883N/Aall: $(PROG)
778N/A
778N/A$(PROG): $(OBJS)
3883N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
2899N/A $(POST_PROCESS)
3817N/A
5123N/Ainstall: all .WAIT $(ROOTPROG) $(ROOTXPG4PROG)
5123N/A
3817N/A$(ROOTXPG4PROG):
3817N/A -$(RM) $@
195N/A -$(LN) -s ../../bin/$(PROG) $@
3904N/A
3904N/Alint: lint_SRCS
3904N/A
3902N/Aclean:
3902N/A $(RM) $(OBJS)
1845N/A
3902N/Ainclude ../Makefile.targ
1845N/A