xref: /illumos-gate/usr/src/cmd/sgs/libconv/Makefile.targ (revision 257873cfc1dd3337766407f80397db60a56f2f5a)
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 (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29pics/%.o:	../common/%.c
30		$(COMPILE.c) -o $@ $<
31		$(POST_PROCESS_O)
32
33pics/%.o:	%.s
34		$(COMPILE.s) -o $@ $<
35		$(POST_PROCESS_O)
36
37pics/%32.o:	../common/%.c
38		$(COMPILE.c) -o $@ $<
39		$(POST_PROCESS_O)
40
41pics/%64.o:	../common/%.c
42		$(COMPILE.c) -D_ELF64 -o $@ $<
43		$(POST_PROCESS_O)
44
45pics/elfcap.o:	$(ELFCAP)/elfcap.c
46		$(COMPILE.c) -o $@ $(ELFCAP)/elfcap.c
47		$(POST_PROCESS_O)
48
49# This rule generates the report_bufsize.h include file used by libconv
50# code to ensure that their private buffer size calculations agree with
51# the public values exposed in sgs/include/conv.h. The limit value
52# supplied must be larger than the largest buffer used in libconv. There
53# is little penalty for making it very large, because the header file is
54# only included in error situations where the compilation will fail.
55#
56# We make this depend on Makefile.targ, because a change to Makefile.targ
57# can change the limit, in which case we want to force everything to rebuild.
58report_bufsize.h:	../Makefile.targ
59		perl ../../tools/libconv_mk_report_bufsize.pl 8000
60
61../common/%.c:	%_msg.h
62
63%_msg.h:	$(SGSMSG) ../common/%.msg report_bufsize.h
64		$(SGSMSG) $(SGSMSGFLAGS) -l -h $@ -d $@ $<
65
66$(SGSMSG):	FRC
67		@ cd $(SGSTOOLS)/$(MACH); pwd; $(MAKE) catalog
68		@ pwd
69
70vernote.s:	bld_vernote $(README_REVISION) $(ONLDREADME)
71		./bld_vernote \
72			-R `perl $(README_REVISION) $(VERNOTE_DEBUG) \
73				$(ONLDREADME)` \
74			-r "$(RELEASE)" -o $@
75
76bld_vernote:	../common/bld_vernote.ksh
77		$(RM) -f $@
78		cp ../common/bld_vernote.ksh $@
79		chmod a+x $@
80
81$(LIBRARY):	pics $$(PICS)
82		@ $(RM) $(LIBRARY)
83		$(AR) $(ARFLAGS) $@ $(PICS)
84		$(POST_PROCESS_A)
85
86chkmsg:		$(LINTSRCS)
87		sh $(CHKMSG) $(CHKMSGFLAGS) $(LINTSRCS)
88
89.PARALLEL:	$(LINTOUT32) $(LINTOUT64) $(LINTLIB32) $(LINTLIB64)
90
91lint:		$(LINTLIB32) $(LINTOUT32) $(LINTLIB64) $(LINTOUT64) \
92		    .WAIT $(SGSLINTOUT)
93
94catalog:
95
96pics:
97		-@mkdir -p $@
98
99clobber:	clean
100		-$(RM) $(LIBRARY) $(CLOBBERFILES)
101
102clean:
103		-$(RM) $(PICS) $(CLEANFILES)
104
105delete:
106
107include		$(SRC)/cmd/sgs/Makefile.targ
108