xref: /illumos-gate/usr/src/lib/libmapid/Makefile (revision 8200fe25ffab8b2032d046c88710a949f361b700)
1*8200fe25Srmesta#
2*8200fe25Srmesta# CDDL HEADER START
3*8200fe25Srmesta#
4*8200fe25Srmesta# The contents of this file are subject to the terms of the
5*8200fe25Srmesta# Common Development and Distribution License (the "License").
6*8200fe25Srmesta# You may not use this file except in compliance with the License.
7*8200fe25Srmesta#
8*8200fe25Srmesta# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*8200fe25Srmesta# or http://www.opensolaris.org/os/licensing.
10*8200fe25Srmesta# See the License for the specific language governing permissions
11*8200fe25Srmesta# and limitations under the License.
12*8200fe25Srmesta#
13*8200fe25Srmesta# When distributing Covered Code, include this CDDL HEADER in each
14*8200fe25Srmesta# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*8200fe25Srmesta# If applicable, add the following below this CDDL HEADER, with the
16*8200fe25Srmesta# fields enclosed by brackets "[]" replaced with your own identifying
17*8200fe25Srmesta# information: Portions Copyright [yyyy] [name of copyright owner]
18*8200fe25Srmesta#
19*8200fe25Srmesta# CDDL HEADER END
20*8200fe25Srmesta#
21*8200fe25Srmesta#
22*8200fe25Srmesta# Copyright 2006 Sun Microsystems, Inc.
23*8200fe25Srmesta# All rights reserved.  Use is subject to license terms.
24*8200fe25Srmesta#
25*8200fe25Srmesta# ident	"%Z%%M%	%I%	%E% SMI"
26*8200fe25Srmesta#
27*8200fe25Srmesta
28*8200fe25Srmestainclude $(SRC)/lib/Makefile.lib
29*8200fe25Srmesta
30*8200fe25SrmestaHDRS		   =	mapid.h
31*8200fe25SrmestaHDRDIR		   =	common
32*8200fe25SrmestaROOTHDRDIR	   =	$(ROOT)/usr/include/nfs
33*8200fe25SrmestaSUBDIRS		   =	$(MACH)
34*8200fe25Srmesta
35*8200fe25Srmestaall	:= TARGET = all
36*8200fe25Srmestaclean	:= TARGET = clean
37*8200fe25Srmestaclobber	:= TARGET = clobber
38*8200fe25Srmestainstall	:= TARGET = install
39*8200fe25Srmestalint	:= TARGET = lint
40*8200fe25Srmesta
41*8200fe25Srmesta.KEEP_STATE:
42*8200fe25Srmesta
43*8200fe25Srmestaall clean clobber lint install: spec .WAIT $(SUBDIRS)
44*8200fe25Srmesta
45*8200fe25Srmestalint: $(SUBDIRS)
46*8200fe25Srmesta
47*8200fe25Srmestainstall_h: $(ROOTHDRS)
48*8200fe25Srmesta
49*8200fe25Srmestacheck: $(CHECKHDRS)
50*8200fe25Srmesta
51*8200fe25Srmesta$(SUBDIRS) spec: FRC
52*8200fe25Srmesta	@cd $@; pwd; $(MAKE) $(TARGET)
53*8200fe25Srmesta
54*8200fe25SrmestaFRC:
55*8200fe25Srmesta
56*8200fe25Srmestainclude $(SRC)/lib/Makefile.targ
57