libconv: remove libdemangle dependency
[unleashed.git] / usr / src / cmd / sgs / libconv / Makefile.targ
blob9c563352540c7ccc3c5bdd7ebec9e0d0c11215c2
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
23 # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24 # Use is subject to license terms.
27 pics/%.o:       ../common/%.c
28                 $(COMPILE.c) -o $@ $<
29                 $(POST_PROCESS_O)
31 # avoid libstdc++ link-time dependency
32 pics/demangle.o:        ../common/demangle.cc
33                 $(COMPILE.cc) -fpic -fno-rtti -fno-exceptions -o $@ ../common/demangle.cc
34                 $(POST_PROCESS_O)
36 pics/%.o:       %.s
37                 $(COMPILE.s) -o $@ $<
38                 $(POST_PROCESS_O)
40 pics/%32.o:     ../common/%.c
41                 $(COMPILE.c) -o $@ $<
42                 $(POST_PROCESS_O)
44 pics/%64.o:     ../common/%.c
45                 $(COMPILE.c) -D_ELF64 -o $@ $<
46                 $(POST_PROCESS_O)
48 pics/elfcap.o:  $(ELFCAP)/elfcap.c
49                 $(COMPILE.c) -o $@ $(ELFCAP)/elfcap.c
50                 $(POST_PROCESS_O)
52 # This rule generates the report_bufsize.h include file used by libconv
53 # code to ensure that their private buffer size calculations agree with
54 # the public values exposed in sgs/include/conv.h. The limit value
55 # supplied must be larger than the largest buffer used in libconv. There
56 # is little penalty for making it very large, because the header file is
57 # only included in error situations where the compilation will fail.
59 # We make this depend on Makefile.targ, because a change to Makefile.targ
60 # can change the limit, in which case we want to force everything to rebuild.
61 report_bufsize.h:       ../Makefile.targ
62                 perl ../../tools/libconv_mk_report_bufsize.pl 8000
64 ../common/%.c ../common/%.cc ../common/%_machelf.c:     %_msg.h
66 %_msg.h %_msg.c: $(SGSMSG) ../common/%.msg report_bufsize.h
67                 $(SGSMSG) $(SGSMSGFLAGS) -h $*_msg.h -d $*_msg.c \
68                         -n sgs_msg_libconv_$* $<
70 $(SGSMSG):      FRC
71                 @ cd $(SGSTOOLS)/$(MACH); pwd; $(MAKE) catalog
72                 @ pwd
74 vernote.s:      bld_vernote $(README_REVISION) $(ONLDREADME)
75                 ./bld_vernote \
76                         -R `perl $(README_REVISION) $(ONLDREADME)` \
77                         -r "$(RELEASE)" -o $@
79 bld_vernote:    ../common/bld_vernote.ksh
80                 $(RM) -f $@
81                 cp ../common/bld_vernote.ksh $@
82                 chmod a+x $@
84 $(LIBRARY):     pics $$(PICS)
85                 @ $(RM) $(LIBRARY)
86                 $(AR) $(ARFLAGS) $@ $(PICS)
87                 $(POST_PROCESS_A)
89 chkmsg:         $(COMOBJS_NOMSG:%.o=../common/%.c) \
90                 $(ELFCOM_OBJS:%.o=$(ELFCAP)/%.c) ../common/lintsup.c
91                 sh $(CHKMSG) $(CHKMSGFLAGS) \
92                         $(COMOBJS_NOMSG:%.o=../common/%.c) \
93                         $(ELFCOM_OBJS:%.o=$(ELFCAP)/%.c) ../common/lintsup.c
95 catalog:
97 pics:
98                 -@mkdir -p $@
100 clobber:        clean
101                 -$(RM) $(LIBRARY) $(CLOBBERFILES)
103 clean:
104                 -$(RM) $(PICS) $(CLEANFILES)
106 delete:
108 include         $(SRC)/cmd/sgs/Makefile.targ