xref: /illumos-gate/usr/src/cmd/tail/Makefile (revision d0fccfcda73f8b52d101bd2b0f7885a766f7e354)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source.  A copy is of the CDDL is also available via the Internet
9# at http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2010 Chris Love.  All rights reserved.
14#
15
16
17PROG=		tail
18XPG4PROG=	$(PROG)
19
20OBJS=		forward.o misc.o read.o reverse.o tail.o
21SRCS=	 	$(OBJS:%.o=%.c)
22
23include ../Makefile.cmd
24
25CLOBBERFILES=	$(PROG)
26
27
28C99MODE=	-xc99=%all
29C99LMODE=	-Xc99=%all
30LINTFLAGS +=	-I. -erroff=E_CONSTANT_CONDITION
31
32# install rules
33$(ROOTINC)/% : %
34	$(INS.file)
35
36.KEEP_STATE:
37
38.PARALLEL: $(OBJS)
39
40all:		$(PROG)
41
42$(PROG):	$(OBJS)
43	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
44	$(POST_PROCESS)
45
46install: all .WAIT $(ROOTPROG) $(ROOTXPG4PROG)
47
48$(ROOTXPG4PROG):
49	-$(RM) $@
50	-$(LN) -s ../../bin/$(PROG) $@
51
52lint: 	lint_SRCS
53
54clean:
55	$(RM) $(OBJS)
56
57include ../Makefile.targ
58