xref: /titanic_41/usr/src/lib/libvscan/Makefile (revision 911106dfb16696472af8c1b7b4c554a829354fa8)
1*911106dfSjm199354#
2*911106dfSjm199354# CDDL HEADER START
3*911106dfSjm199354#
4*911106dfSjm199354# The contents of this file are subject to the terms of the
5*911106dfSjm199354# Common Development and Distribution License (the "License").
6*911106dfSjm199354# You may not use this file except in compliance with the License.
7*911106dfSjm199354#
8*911106dfSjm199354# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*911106dfSjm199354# or http://www.opensolaris.org/os/licensing.
10*911106dfSjm199354# See the License for the specific language governing permissions
11*911106dfSjm199354# and limitations under the License.
12*911106dfSjm199354#
13*911106dfSjm199354# When distributing Covered Code, include this CDDL HEADER in each
14*911106dfSjm199354# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*911106dfSjm199354# If applicable, add the following below this CDDL HEADER, with the
16*911106dfSjm199354# fields enclosed by brackets "[]" replaced with your own identifying
17*911106dfSjm199354# information: Portions Copyright [yyyy] [name of copyright owner]
18*911106dfSjm199354#
19*911106dfSjm199354# CDDL HEADER END
20*911106dfSjm199354#
21*911106dfSjm199354#
22*911106dfSjm199354# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23*911106dfSjm199354# Use is subject to license terms.
24*911106dfSjm199354#
25*911106dfSjm199354# ident	"%Z%%M%	%I%	%E% SMI"
26*911106dfSjm199354#
27*911106dfSjm199354
28*911106dfSjm199354include		../Makefile.lib
29*911106dfSjm199354
30*911106dfSjm199354HDRS =	libvscan.h
31*911106dfSjm199354HDRDIR =	common
32*911106dfSjm199354SUBDIRS=	$(MACH)
33*911106dfSjm199354
34*911106dfSjm199354all :=		TARGET= all
35*911106dfSjm199354clean :=	TARGET= clean
36*911106dfSjm199354clobber :=	TARGET= clobber
37*911106dfSjm199354install :=	TARGET= install
38*911106dfSjm199354lint :=		TARGET= lint
39*911106dfSjm199354
40*911106dfSjm199354POFILE =	libvscan.po
41*911106dfSjm199354MSGFILES =	common/libvscan.c
42*911106dfSjm199354
43*911106dfSjm199354.KEEP_STATE:
44*911106dfSjm199354
45*911106dfSjm199354all clean clobber install lint _msg : $(SUBDIRS)
46*911106dfSjm199354
47*911106dfSjm199354$(POFILE):	$(MSGFILES)
48*911106dfSjm199354	$(BUILDPO.msgfiles)
49*911106dfSjm199354
50*911106dfSjm199354install_h:	$(ROOTHDRS)
51*911106dfSjm199354
52*911106dfSjm199354check:	$(CHECKHDR)
53*911106dfSjm199354
54*911106dfSjm199354_msg:	$(MSGDOMAINPOFILE)
55*911106dfSjm199354
56*911106dfSjm199354$(SUBDIRS): FRC
57*911106dfSjm199354	@cd $@; pwd; $(MAKE) $(TARGET)
58*911106dfSjm199354
59*911106dfSjm199354FRC:
60*911106dfSjm199354
61*911106dfSjm199354include $(SRC)/Makefile.msg.targ
62*911106dfSjm199354include ../Makefile.targ
63