xref: /illumos-gate/usr/src/lib/libvscan/Makefile (revision 241c90a06e8d1708235651863df515a2d522a03a)
1911106dfSjm199354#
2911106dfSjm199354# CDDL HEADER START
3911106dfSjm199354#
4911106dfSjm199354# The contents of this file are subject to the terms of the
5911106dfSjm199354# Common Development and Distribution License (the "License").
6911106dfSjm199354# You may not use this file except in compliance with the License.
7911106dfSjm199354#
8911106dfSjm199354# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9911106dfSjm199354# or http://www.opensolaris.org/os/licensing.
10911106dfSjm199354# See the License for the specific language governing permissions
11911106dfSjm199354# and limitations under the License.
12911106dfSjm199354#
13911106dfSjm199354# When distributing Covered Code, include this CDDL HEADER in each
14911106dfSjm199354# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15911106dfSjm199354# If applicable, add the following below this CDDL HEADER, with the
16911106dfSjm199354# fields enclosed by brackets "[]" replaced with your own identifying
17911106dfSjm199354# information: Portions Copyright [yyyy] [name of copyright owner]
18911106dfSjm199354#
19911106dfSjm199354# CDDL HEADER END
20911106dfSjm199354#
21911106dfSjm199354#
22911106dfSjm199354# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23911106dfSjm199354# Use is subject to license terms.
24911106dfSjm199354#
254b82800cSJason King# Copyright 2018, Joyent, Inc.
26911106dfSjm199354#
27911106dfSjm199354
28911106dfSjm199354include		../Makefile.lib
29911106dfSjm199354
30911106dfSjm199354HDRS =	libvscan.h
31911106dfSjm199354HDRDIR =	common
32911106dfSjm199354SUBDIRS=	$(MACH)
33911106dfSjm199354
34911106dfSjm199354all :=		TARGET= all
35911106dfSjm199354clean :=	TARGET= clean
36911106dfSjm199354clobber :=	TARGET= clobber
37911106dfSjm199354install :=	TARGET= install
38911106dfSjm199354
39911106dfSjm199354POFILE =	libvscan.po
40911106dfSjm199354MSGFILES =	common/libvscan.c
41911106dfSjm199354
42911106dfSjm199354.KEEP_STATE:
43911106dfSjm199354
44*241c90a0SRichard Loweall clean clobber install: $(SUBDIRS)
45911106dfSjm199354
46911106dfSjm199354$(POFILE):	$(MSGFILES)
47911106dfSjm199354	$(BUILDPO.msgfiles)
48911106dfSjm199354
49911106dfSjm199354install_h:	$(ROOTHDRS)
50911106dfSjm199354
51911106dfSjm199354check:	$(CHECKHDR)
52911106dfSjm199354
53911106dfSjm199354_msg:	$(MSGDOMAINPOFILE)
54911106dfSjm199354
55911106dfSjm199354$(SUBDIRS): FRC
56911106dfSjm199354	@cd $@; pwd; $(MAKE) $(TARGET)
57911106dfSjm199354
58911106dfSjm199354FRC:
59911106dfSjm199354
60911106dfSjm199354include $(SRC)/Makefile.msg.targ
61911106dfSjm199354include ../Makefile.targ
62