xref: /illumos-gate/usr/src/lib/libproc/Makefile (revision 03831d35)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright (c) 1997-1999 by Sun Microsystems, Inc.
24# All rights reserved.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27#
28# lib/libproc/Makefile
29
30include ../Makefile.lib
31
32SUBDIRS=	$(MACH)
33$(BUILD64)SUBDIRS += $(MACH64)
34
35all :=		TARGET= all
36clean :=	TARGET= clean
37clobber :=	TARGET= clobber
38delete :=	TARGET= delete
39install :=	TARGET= install
40lint :=		TARGET= lint
41_msg :=		TARGET= _msg
42package :=	TARGET= package
43
44LIBRARY= 	libproc.a
45TEXT_DOMAIN=	SUNW_OST_OSLIB
46XGETFLAGS=	-a
47POFILE=		$(LIBRARY:.a=.po)
48POFILES=	generic.po
49
50SED=	sed
51GREP=	grep
52CP=	cp
53
54# definitions for install_h target
55HDRS=		libproc.h
56ROOTHDRDIR=	$(ROOT)/usr/include
57ROOTHDRS=	$(HDRS:%=$(ROOTHDRDIR)/%)
58CHECKHDRS=	$(HDRS:%.h=common/%.check)
59
60$(ROOTHDRS) :=  FILEMODE= 644
61
62# install rule for install_h target
63$(ROOTHDRDIR)/%: common/%
64	$(INS.file)
65
66.KEEP_STATE:
67
68all clean clobber delete install package: spec .WAIT $(SUBDIRS)
69
70lint: $(SUBDIRS)
71
72install_h: $(ROOTHDRS)
73
74check: $(CHECKHDRS)
75
76spec $(SUBDIRS):	FRC
77	@cd $@; pwd; $(MAKE) $(TARGET)
78
79_msg:	$(MSGDOMAIN) $(POFILE)
80	$(RM) $(MSGDOMAIN)/$(POFILE)
81	$(CP) $(POFILE) $(MSGDOMAIN)
82
83$(POFILE):	.WAIT $(POFILES)
84	$(RM) $@
85	$(CAT) $(POFILES) > $@
86
87$(POFILES):
88	$(RM) messages.po
89	$(XGETTEXT) $(XGETFLAGS) *.[ch]*
90	$(SED) -e '/^# msg/d' -e '/^domain/d' messages.po > $@
91	$(RM) messages.po
92
93FRC:
94