Makefile revision 117429
1# $FreeBSD: head/gnu/lib/libstdc++/Makefile 117429 2003-07-11 05:37:23Z kan $
2
3GCCDIR=	${.CURDIR}/../../../contrib/gcc
4SRCDIR=	${.CURDIR}/../../../contrib/libstdc++
5SUPDIR=	${SRCDIR}/libsupc++
6
7.PATH: ${SRCDIR}/src ${SRCDIR}/libmath ${SRCDIR}/config/io \
8       ${SRCDIR}/config/locale/generic ${SRCDIR} ${SRCDIR}/std \
9       ${SUPDIR} ${GCCDIR}
10
11#SUBDIR=	doc
12
13LIB=		stdc++
14SHLIB_MAJOR=	4
15
16CFLAGS+=	-DIN_GLIBCPP_V3 -DHAVE_CONFIG_H
17CFLAGS+=	-I${.CURDIR} -I${SUPDIR} -I${GCCDIR}
18CXXFLAGS+=	-fno-implicit-templates -ffunction-sections -fdata-sections -Wno-deprecated
19#LDFLAGS+=	-Wl,-version-info,4:0:0 -Wl,--version-script=${SRCDIR}/src/linker.map
20
21LDADD+=		-lm
22DPADD+=		${LIBM}
23
24# libstdc++ sources (libstdc++/src/Makefile.in, do not reorder)
25SRCS+= bitset.cc codecvt.cc complex_io.cc concept-inst.cc ctype.cc \
26	ext-inst.cc fstream.cc fstream-inst.cc functexcept.cc \
27	globals.cc io-inst.cc ios.cc istream-inst.cc limits.cc \
28	locale.cc locale-inst.cc localename.cc misc-inst.cc \
29	ostream-inst.cc  sstream-inst.cc stdexcept.cc stl-inst.cc \
30	streambuf-inst.cc string-inst.cc strstream-fixed.cc \
31	valarray-inst.cc vterminate.cc wstring-inst.cc
32
33# target sources
34SRCS+=  codecvt_members.cc collate_members.cc ctype_members.cc \
35	messages_members.cc monetary_members.cc numeric_members.cc \
36	time_members.cc
37
38# target sources extra
39SRCS+=  basic_file_stdio.cc c_locale.cc
40
41# C parts of math
42SRCS+=	nan.c signbit.c signbitf.c signbitl.c stubs.c
43
44# Embedded copy of libsupc++
45SRCS+=	del_op.cc del_opnt.cc del_opv.cc del_opvnt.cc \
46	eh_alloc.cc eh_aux_runtime.cc eh_catch.cc eh_exception.cc \
47	eh_globals.cc eh_personality.cc eh_terminate.cc eh_throw.cc eh_type.cc \
48	guard.cc new_handler.cc new_op.cc new_opnt.cc new_opv.cc new_opvnt.cc \
49	pure.cc tinfo.cc tinfo2.cc vec.cc
50
51# from libiberty:
52SRCS+=	cp-demangle.c dyn-string.c
53
54strstream-fixed.cc:	${SRCDIR}/src/strstream.cc
55	sed -e 's,^#include <strstream>,#include <backward/strstream>,g' \
56	    < ${SRCDIR}/src/strstream.cc > strstream-fixed.cc
57
58CLEANFILES+=	strstream-fixed.cc
59
60INCSGROUPS=	BITSHDRS BKWHDRS EXTHDRS BASEHDRS BASEXHDRS STDHDRS \
61		TARGETHDRS THRHDRS
62
63BITSHDRS=	basic_ios.h basic_ios.tcc basic_string.h basic_string.tcc \
64		boost_concept_check.h char_traits.h codecvt.h concept_check.h \
65		cpp_type_traits.h deque.tcc fpos.h fstream.tcc functexcept.h \
66		generic_shadow.h gslice.h gslice_array.h indirect_array.h \
67		ios_base.h istream.tcc list.tcc \
68		locale_classes.h locale_facets.h locale_facets.tcc \
69		localefwd.h mask_array.h ostream.tcc pthread_allocimpl.h \
70		slice.h slice_array.h sstream.tcc stl_algo.h stl_algobase.h \
71		stl_alloc.h stl_bvector.h stl_construct.h stl_deque.h \
72		stl_function.h stl_heap.h stl_iterator.h \
73		stl_iterator_base_funcs.h stl_iterator_base_types.h \
74		stl_list.h stl_map.h stl_multimap.h stl_multiset.h \
75		stl_numeric.h stl_pair.h stl_pthread_alloc.h stl_queue.h \
76		stl_raw_storage_iter.h stl_relops.h stl_set.h stl_stack.h \
77		stl_tempbuf.h stl_threads.h stl_tree.h stl_uninitialized.h \
78		stl_vector.h stream_iterator.h streambuf.tcc \
79		streambuf_iterator.h stringfwd.h type_traits.h \
80		valarray_array.h valarray_array.tcc valarray_meta.h \
81		vector.tcc
82BITSHDRS:=	${BITSHDRS:S;^;${SRCDIR}/include/bits/;}
83BITSHDRSDIR=	${INCLUDEDIR}/c++/3.3/bits
84
85BKWHDRS=	algo.h algobase.h alloc.h backward_warning.h bvector.h \
86		complex.h defalloc.h deque.h fstream.h function.h \
87		hash_map.h hash_set.h hashtable.h heap.h iomanip.h \
88		iostream.h istream.h iterator.h list.h map.h multimap.h \
89		multiset.h new.h ostream.h pair.h queue.h rope.h set.h \
90		slist.h stack.h stream.h streambuf.h strstream strstream.h \
91		tempbuf.h tree.h vector.h
92BKWHDRS:=	${BKWHDRS:S;^;${SRCDIR}/include/backward/;}
93BKWHDRSDIR=	${INCLUDEDIR}/c++/3.3/backward
94
95EXTHDRS=	algorithm enc_filebuf.h functional hash_map hash_set \
96		iterator memory numeric rb_tree rope ropeimpl.h slist \
97		stdio_filebuf.h stl_hash_fun.h stl_hashtable.h stl_rope.h
98EXTHDRS:=	${EXTHDRS:S;^;${SRCDIR}/include/ext/;}
99EXTHDRSDIR=	${INCLUDEDIR}/c++/3.3/ext
100
101# This is the common subset of files that all three "C" header models use.
102BASEHDRS=	std_cassert.h std_cctype.h std_cerrno.h std_cfloat.h \
103		std_ciso646.h std_climits.h std_clocale.h std_cmath.h \
104		std_csetjmp.h std_csignal.h std_cstdarg.h std_cstddef.h \
105		std_cstdio.h std_cstdlib.h std_cstring.h std_ctime.h \
106		std_cwchar.h std_cwctype.h
107.for h in ${BASEHDRS}
108BASEHDRSNAME_$h=${h:R:S;^std_;;}
109.endfor
110BASEHDRS:=	${BASEHDRS:S;^;${SRCDIR}/include/c_std/;}
111BASEHDRSDIR=	${INCLUDEDIR}/c++/3.3
112
113# Some of the different "C" header models need extra files.
114BASEXHDRS=	${SRCDIR}/include/c_std/cmath.tcc
115BASEXHDRSDIR=	${INCLUDEDIR}/c++/3.3/bits
116
117STDHDRS=	std_algorithm.h std_bitset.h std_complex.h std_deque.h \
118		std_fstream.h std_functional.h std_iomanip.h std_ios.h \
119		std_iosfwd.h std_iostream.h std_istream.h std_iterator.h \
120		std_limits.h std_list.h std_locale.h std_map.h std_memory.h \
121		std_numeric.h std_ostream.h std_queue.h std_set.h \
122		std_sstream.h std_stack.h std_stdexcept.h std_streambuf.h \
123		std_string.h std_utility.h std_valarray.h std_vector.h
124.for h in ${STDHDRS}
125STDHDRSNAME_$h=${h:R:S;^std_;;}
126.endfor
127STDHDRS:=	${STDHDRS:S;^;${SRCDIR}/include/std/;}
128STDHDRSDIR=	${INCLUDEDIR}/c++/3.3
129
130TARGETHDRS=	io/basic_file_stdio.h io/c_io_stdio.h \
131		locale/generic/c_locale.h \
132		locale/generic/c++locale_internal.h \
133		locale/generic/codecvt_specializations.h \
134		locale/generic/messages_members.h \
135		locale/generic/time_members.h \
136		os/bsd/freebsd/ctype_base.h \
137		os/bsd/freebsd/ctype_inline.h \
138		os/bsd/freebsd/ctype_noninline.h \
139		os/bsd/freebsd/os_defines.h
140TARGETHDRS:=	${TARGETHDRS:S;^;${SRCDIR}/config/;}
141TARGETHDRS+=	${.CURDIR}/c++config.h
142TARGETHDRSNAME_basic_file_stdio.h= basic_file.h
143TARGETHDRSNAME_c_io_stdio.h= c++io.h
144TARGETHDRSNAME_c_locale.h= c++locale.h
145TARGETHDRSDIR=	${INCLUDEDIR}/c++/3.3/bits
146
147MARCHHDRS=	atomicity.h
148.if ${MACHINE_ARCH} == "sparc64"
149MARCHDIR=	sparc
150.elif ${MACHINE_ARCH} == "i386" && ${MACHINE_CPU} != 'i386'
151MARCHDIR=	i486
152.else
153MARCHDIR=	${MACHINE_ARCH}
154.endif
155
156.for h in ${MARCHHDRS}
157.if exists(${SRCDIR}/config/cpu/${MARCHDIR}/${h})
158TARGETHDRS+=	${SRCDIR}/config/cpu/${MARCHDIR}/${h}
159.else
160TARGETHDRS+=	${SRCDIR}/config/cpu/generic/bits/${h}
161.endif
162.endfor
163
164THRHDRS=	gthr.h gthr-single.h gthr-posix.h gthr-default.h
165THRHDRSDIR=	${INCLUDEDIR}/c++/3.3/bits
166
167gthr.h: ${GCCDIR}/gthr.h
168	sed -e '/^#/s/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_][ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*\)/_GLIBCPP_\1/g' \
169	    -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
170	    < ${GCCDIR}/gthr.h > gthr.h
171
172gthr-single.h: ${GCCDIR}/gthr-single.h
173	sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
174	    -e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCPP_\1/g' \
175	    < ${GCCDIR}/gthr-single.h > gthr-single.h
176
177gthr-posix.h: ${GCCDIR}/gthr-posix.h
178	sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
179	    -e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCPP_\1/g' \
180	    -e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*WEAK\)/_GLIBCPP_\1/g' \
181	    < ${GCCDIR}/gthr-posix.h > gthr-posix.h
182
183gthr-default.h: ${GCCDIR}/gthr-posix.h
184	sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
185	    -e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCPP_\1/g' \
186	    -e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*WEAK\)/_GLIBCPP_\1/g' \
187	    -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
188	    < ${GCCDIR}/gthr-posix.h > gthr-default.h
189
190CLEANFILES+=	${THRHDRS}
191
192.include <bsd.lib.mk>
193