xref: /onnv-gate/usr/src/cmd/ipf/lib/Makefile (revision 8624:0c81faef90eb)
10Sstevel@tonic-gate#
2*8624SDarren.Reed@Sun.COM# CDDL HEADER START
3*8624SDarren.Reed@Sun.COM#
4*8624SDarren.Reed@Sun.COM# The contents of this file are subject to the terms of the
5*8624SDarren.Reed@Sun.COM# Common Development and Distribution License (the "License").
6*8624SDarren.Reed@Sun.COM# You may not use this file except in compliance with the License.
7*8624SDarren.Reed@Sun.COM#
8*8624SDarren.Reed@Sun.COM# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*8624SDarren.Reed@Sun.COM# or http://www.opensolaris.org/os/licensing.
10*8624SDarren.Reed@Sun.COM# See the License for the specific language governing permissions
11*8624SDarren.Reed@Sun.COM# and limitations under the License.
12*8624SDarren.Reed@Sun.COM#
13*8624SDarren.Reed@Sun.COM# When distributing Covered Code, include this CDDL HEADER in each
14*8624SDarren.Reed@Sun.COM# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*8624SDarren.Reed@Sun.COM# If applicable, add the following below this CDDL HEADER, with the
16*8624SDarren.Reed@Sun.COM# fields enclosed by brackets "[]" replaced with your own identifying
17*8624SDarren.Reed@Sun.COM# information: Portions Copyright [yyyy] [name of copyright owner]
18*8624SDarren.Reed@Sun.COM#
19*8624SDarren.Reed@Sun.COM# CDDL HEADER END
20*8624SDarren.Reed@Sun.COM#
21*8624SDarren.Reed@Sun.COM#
22*8624SDarren.Reed@Sun.COM# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
230Sstevel@tonic-gate# Use is subject to license terms.
240Sstevel@tonic-gate#
250Sstevel@tonic-gate#cmd/ipf/lib/Makefile
260Sstevel@tonic-gate#
270Sstevel@tonic-gate
280Sstevel@tonic-gateinclude $(SRC)/lib/Makefile.lib
290Sstevel@tonic-gate
300Sstevel@tonic-gateSUBDIRS = 	$(MACH)
310Sstevel@tonic-gate
320Sstevel@tonic-gate$(BUILD64)SUBDIRS += $(MACH64)
330Sstevel@tonic-gate
340Sstevel@tonic-gateall	:=	TARGET = all
350Sstevel@tonic-gateinstall	:=	TARGET = install
360Sstevel@tonic-gateclean	:=	TARGET = clean
370Sstevel@tonic-gateclobber	:=	TARGET = clobber
380Sstevel@tonic-gatelint	:=	TARGET = lint
390Sstevel@tonic-gate
400Sstevel@tonic-gate.KEEP_STATE:
410Sstevel@tonic-gate
420Sstevel@tonic-gateall clean clobber install lint:	$(SUBDIRS)
430Sstevel@tonic-gate
440Sstevel@tonic-gate$(SUBDIRS):	FRC
450Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
460Sstevel@tonic-gate
470Sstevel@tonic-gateFRC:
480Sstevel@tonic-gate
490Sstevel@tonic-gateinclude $(SRC)/lib/Makefile.targ
500Sstevel@tonic-gateinclude ../Makefile.ipf
51