xref: /illumos-gate/usr/src/lib/extendedFILE/Makefile (revision a5f69788de7ac07553de47f7fec8c05a9a94c105)
1*a5f69788Scraigm#
2*a5f69788Scraigm# CDDL HEADER START
3*a5f69788Scraigm#
4*a5f69788Scraigm# The contents of this file are subject to the terms of the
5*a5f69788Scraigm# Common Development and Distribution License (the "License").
6*a5f69788Scraigm# You may not use this file except in compliance with the License.
7*a5f69788Scraigm#
8*a5f69788Scraigm# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*a5f69788Scraigm# or http://www.opensolaris.org/os/licensing.
10*a5f69788Scraigm# See the License for the specific language governing permissions
11*a5f69788Scraigm# and limitations under the License.
12*a5f69788Scraigm#
13*a5f69788Scraigm# When distributing Covered Code, include this CDDL HEADER in each
14*a5f69788Scraigm# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*a5f69788Scraigm# If applicable, add the following below this CDDL HEADER, with the
16*a5f69788Scraigm# fields enclosed by brackets "[]" replaced with your own identifying
17*a5f69788Scraigm# information: Portions Copyright [yyyy] [name of copyright owner]
18*a5f69788Scraigm#
19*a5f69788Scraigm# CDDL HEADER END
20*a5f69788Scraigm#
21*a5f69788Scraigm#
22*a5f69788Scraigm# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23*a5f69788Scraigm# Use is subject to license terms.
24*a5f69788Scraigm#
25*a5f69788Scraigm#ident	"%Z%%M%	%I%	%E% SMI"
26*a5f69788Scraigm#
27*a5f69788Scraigm# lib/extendedFILE/Makefile
28*a5f69788Scraigm
29*a5f69788Scraigminclude	../Makefile.lib
30*a5f69788Scraigm
31*a5f69788ScraigmSUBDIRS=	spec .WAIT $(MACH)
32*a5f69788Scraigm
33*a5f69788ScraigmLIBRARY=	extendedFILE.a
34*a5f69788Scraigm
35*a5f69788Scraigmall :=		TARGET= all
36*a5f69788Scraigminstall :=	TARGET= install
37*a5f69788Scraigmclean :=	TARGET= clean
38*a5f69788Scraigmclobber :=	TARGET= clobber
39*a5f69788Scraigmlint :=		TARGET= lint
40*a5f69788Scraigm
41*a5f69788Scraigm.KEEP_STATE:
42*a5f69788Scraigm
43*a5f69788Scraigmall install clean clobber lint: $(SUBDIRS)
44*a5f69788Scraigm
45*a5f69788Scraigm$(SUBDIRS):	FRC
46*a5f69788Scraigm	@cd $@; pwd; $(MAKE) $(TARGET)
47*a5f69788Scraigm
48*a5f69788ScraigmFRC:
49