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