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