xref: /illumos-gate/usr/src/cmd/ipf/Makefile (revision 7c478bd9)
1*7c478bd9Sstevel@tonic-gate#
2*7c478bd9Sstevel@tonic-gate# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
3*7c478bd9Sstevel@tonic-gate# Use is subject to license terms.
4*7c478bd9Sstevel@tonic-gate#
5*7c478bd9Sstevel@tonic-gate#ident	"%Z%%M%	%I%	%E% SMI"
6*7c478bd9Sstevel@tonic-gate#
7*7c478bd9Sstevel@tonic-gate#cmd/ipf/Makefile
8*7c478bd9Sstevel@tonic-gate#
9*7c478bd9Sstevel@tonic-gate
10*7c478bd9Sstevel@tonic-gateSUBDIRS=	etc examples \
11*7c478bd9Sstevel@tonic-gate		lib svc .WAIT \
12*7c478bd9Sstevel@tonic-gate		pfild tools
13*7c478bd9Sstevel@tonic-gate
14*7c478bd9Sstevel@tonic-gateLINTCLEAN=
15*7c478bd9Sstevel@tonic-gateLINTSUBDIRS=
16*7c478bd9Sstevel@tonic-gate
17*7c478bd9Sstevel@tonic-gateinclude ../Makefile.cmd
18*7c478bd9Sstevel@tonic-gate
19*7c478bd9Sstevel@tonic-gateall:=           TARGET= all
20*7c478bd9Sstevel@tonic-gateinstall:=       TARGET= install
21*7c478bd9Sstevel@tonic-gateclean:=         TARGET= clean
22*7c478bd9Sstevel@tonic-gateclobber:=       TARGET= clobber
23*7c478bd9Sstevel@tonic-gatelint:=          TARGET= lint
24*7c478bd9Sstevel@tonic-gate
25*7c478bd9Sstevel@tonic-gate.KEEP_STATE:
26*7c478bd9Sstevel@tonic-gate
27*7c478bd9Sstevel@tonic-gate.PARALLEL:      $(SUBDIRS)
28*7c478bd9Sstevel@tonic-gate
29*7c478bd9Sstevel@tonic-gateall lint clean clobber: $(SUBDIRS)
30*7c478bd9Sstevel@tonic-gate
31*7c478bd9Sstevel@tonic-gateinstall: $(SUBDIRS)
32*7c478bd9Sstevel@tonic-gate
33*7c478bd9Sstevel@tonic-gate$(SUBDIRS): FRC
34*7c478bd9Sstevel@tonic-gate	cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
35*7c478bd9Sstevel@tonic-gate
36*7c478bd9Sstevel@tonic-gateFRC:
37*7c478bd9Sstevel@tonic-gate
38*7c478bd9Sstevel@tonic-gatecheck:
39