libstdc++47: Rework to prevent regeneration during install
[dragonfly.git] / gnu / lib / gcc47 / libstdc++ / Makefile
1 .include "../Makefile.inc"
2 .include "../libsupc++/Makefile.src"
3 .include "Makefile.headers"
4 SRCDIR= ${GCCDIR}/libstdc++-v3
5 .PATH:  ${SRCDIR}
6 .PATH:  ${SRCDIR}/libsupc++
7 .PATH:  ${SRCDIR}/src
8 .PATH:  ${SRCDIR}/src/c++11
9 .PATH:  ${SRCDIR}/src/c++98
10 .PATH:  ${SRCDIR}/libmath
11 .PATH:  ${SRCDIR}/config/io
12 .PATH:  ${SRCDIR}/config/locale/dragonfly
13 .PATH:  ${SRCDIR}/config/locale/generic
14 .PATH:  ${GCCDIR}/gcc
15 .PATH:  ${GCCDIR}/libgcc
16
17 # Vendor lists shared lib version as 6, not 9.
18 LIB=            stdc++
19 SHLIB_MAJOR=    9
20
21 CFLAGS+=        -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H
22 CFLAGS+=        -I${.CURDIR}
23 CFLAGS+=        -I${.OBJDIR}
24 CFLAGS+=        -I${GCCDIR}/gcc
25 CFLAGS+=        -I${GCCDIR}/libgcc
26 CFLAGS+=        -I${GCCDIR}/libiberty
27 CFLAGS+=        -I${GCCDIR}/include
28 CFLAGS+=        -I${GCCDIR}/libcpp/include
29 CFLAGS+=        -I${SRCDIR}/include
30 CFLAGS+=        -I${SRCDIR}/include/std
31 CFLAGS+=        -I${SRCDIR}/include/c_std
32 CFLAGS+=        -I${SRCDIR}/include/c_global
33 CFLAGS+=        -I${SRCDIR}/include/backward
34 CFLAGS+=        -I${SRCDIR}/libsupc++
35 CXXFLAGS+=      -fno-implicit-templates
36 CXXFLAGS+=      -fdiagnostics-show-location=once
37 CXXFLAGS+=      -ffunction-sections -fdata-sections
38 CXXFLAGS+=      -Wno-deprecated
39 LDFLAGS+=       -Wl,--version-script=${.CURDIR}/libstdc++-symbols.ver
40
41 THRLIB=         ${.OBJDIR}/../../../../lib/libpthread/libpthread.so
42 LDADD+=         ${THRLIB} -lm
43 DPADD+=         ${THRLIB} ${LIBM}
44
45 # Slightly modified from libstdc++/src/c++98/Makefile.in
46 # sources_1998 is the equivalent of libc_98convenience.a
47 # sources_2011 is the equivalent of libc_11convenience.a
48 host_sources_1998 = \
49         atomicity.cc \
50         codecvt_members.cc \
51         collate_members.cc \
52         ctype_configure_char.cc \
53         ctype_members.cc \
54         messages_members.cc \
55         monetary_members.cc \
56         numeric_members.cc \
57         time_members.cc
58
59 parallel_sources_1998 =
60
61 inst_sources_1998 = \
62         allocator-inst.cc \
63         concept-inst.cc \
64         ext-inst.cc \
65         ios-inst.cc \
66         iostream-inst.cc \
67         istream-inst.cc \
68         locale-inst.cc \
69         misc-inst.cc \
70         ostream-inst.cc \
71         sstream-inst.cc \
72         streambuf-inst.cc \
73         wlocale-inst.cc
74
75 host_sources_extra_1998 = \
76         basic_file.cc \
77         c++locale.cc \
78         ${inst_sources_1998} \
79         ${parallel_sources_1998}
80
81 sources_1998 = \
82         bitmap_allocator.cc \
83         pool_allocator.cc \
84         mt_allocator.cc \
85         codecvt.cc \
86         complex_io.cc \
87         ctype.cc \
88         globals_io.cc \
89         hash_tr1.cc \
90         hashtable_tr1.cc \
91         ios.cc \
92         ios_failure.cc \
93         ios_init.cc \
94         ios_locale.cc \
95         list.cc \
96         locale.cc \
97         locale_init.cc \
98         locale_facets.cc \
99         localename.cc \
100         math_stubs_float.cc \
101         math_stubs_long_double.cc \
102         stdexcept.cc \
103         strstream.cc \
104         tree-cxx.cc \
105         istream.cc \
106         streambuf.cc \
107         valarray.cc \
108         ${host_sources_1998} \
109         ${host_sources_extra_1998}
110
111 inst_sources_2011 = \
112         fstream-inst.cc \
113         string-inst.cc \
114         wstring-inst.cc
115
116 sources_2011 = \
117         chrono.cc \
118         condition_variable.cc \
119         debug-cxx.cc \
120         functexcept.cc \
121         functional.cc \
122         future.cc \
123         hash_c++0x.cc \
124         hashtable_c++0x.cc \
125         limits.cc \
126         mutex.cc \
127         placeholders.cc \
128         regex.cc \
129         shared_ptr.cc \
130         system_error.cc \
131         thread.cc \
132         ${inst_sources_2011}
133
134 ldbl_compat_sources = 
135 parallel_compat_sources = 
136
137 cxx98_sources = \
138         compatibility.cc \
139         compatibility-debug_list.cc \
140         compatibility-debug_list-2.cc \
141         compatibility-list.cc \
142         compatibility-list-2.cc \
143         ${ldbl_compat_sources} \
144         ${parallel_compat_sources}
145
146 cxx11_sources = \
147         compatibility-c++0x.cc \
148         compatibility-atomic-c++0x.cc \
149         compatibility-thread-c++0x.cc
150
151 SRCS+=  ${SUPCXX} \
152         cp-demangle.c \
153         ${sources_1998} \
154         ${sources_2011} \
155         ${cxx98_sources} \
156         ${cxx11_sources}
157
158 FLAGS_GROUPS=           gnu0x gnu11
159 gnu0x_FLAGS=            -std=gnu++0x
160 gnu11_FLAGS=            -std=gnu++11
161 gnu0x_FLAGS_FILES=      eh_ptr.cc \
162                         eh_throw.cc \
163                         guard.cc \
164                         nested_exception.cc
165 gnu11_FLAGS_FILES=      chrono.cc \
166                         condition_variable.cc \
167                         debug-cxx.cc \
168                         functexcept.cc \
169                         functional.cc \
170                         future.cc \
171                         hash_c++0x.cc \
172                         hashtable_c++0x.cc \
173                         limits.cc \
174                         mutex.cc \
175                         placeholders.cc \
176                         regex.cc \
177                         shared_ptr.cc \
178                         system_error.cc \
179                         thread.cc \
180                         fstream-inst.cc \
181                         string-inst.cc \
182                         wstring-inst.cc \
183                         compatibility-c++0x.cc \
184                         compatibility-atomic-c++0x.cc \
185                         compatibility-thread-c++0x.cc
186
187 #generated sources
188 SRCS+=  unwind.h \
189         ${CONF_HEADERS:T}
190
191 HD=     ${INCLUDEDIR}/c++/${GCCPOINTVER}
192
193 # These sections are detailed in Makefile.headers
194 # parallel section is empty, skip it
195 # make buildincludes, make installincludes before make depend
196 glibcxx_srcdir= ${SRCDIR}
197 HSECT=  std bits bits_sup backward ext ext_compat tr1 tr2 decimal \
198         c_base c_compatibility debug profile profile_impl host supc
199 PBSECT= 1 2 3 4 5 6 7
200         
201 .for i in ${HSECT}
202 INCSGROUPS+=            ${i}_headers
203 ${i}_headersDIR=        ${HD}/${${i}_builddir}
204 .endfor
205
206 PATHGROUP=
207 .for i in ${PBSECT}
208 .  for k in ${pb_headers${i}}
209 .    if ${PATHGROUP:M${k:H:T}} == ""
210 PATHGROUP+=${k:H:T}
211 PATH_${k:H:T}=${k:H:T}
212 .    endif
213 PBG_${k:H:T}+=${k}
214 .  endfor
215 .endfor
216
217 INCSGROUPS+=            PBG_pb_ds
218 PBG_pb_dsDIR=           ${HD}/${pb_builddir}
219
220 INCSGROUPS+=            PBG_detail
221 PBG_detailDIR=          ${HD}/${pb_builddir}/detail
222
223 .for k in ${PATHGROUP:Npb_ds:Ndetail}
224 INCSGROUPS+=            PBG_${k}
225 PBG_${k}DIR=            ${HD}/${pb_builddir}/detail/${PATH_${k}}
226 .endfor
227
228 INCSGROUPS+=            host_headers_extra
229 host_headers_extraDIR=  ${HD}/bits
230 host_headers_extraNAME_basic_file_stdio.h=      basic_file.h
231 host_headers_extraNAME_c_locale.h=              c++locale.h
232 host_headers_extraNAME_c_io_stdio.h+=           c++io.h
233 host_headers_extraNAME_new_allocator_base.h=    c++allocator.h
234
235 CONF_HEADERS=   locale/generic/c++locale_internal.h \
236                 abi/compatibility.h
237
238 atomicity.cc: ${SRCDIR}/config/cpu/generic/atomicity_builtins/atomicity.h
239         cp ${.ALLSRC} ${.TARGET}
240
241 ctype_configure_char.cc: ${SRCDIR}/config/os/bsd/dragonfly/${.TARGET}
242         cp ${.ALLSRC} ${.TARGET}
243
244 basic_file.cc: ${SRCDIR}/config/io/basic_file_stdio.cc
245         cp ${.ALLSRC} ${.TARGET}
246
247 c++locale.cc: ${SRCDIR}/config/locale/dragonfly/c_locale.cc
248         cp ${.ALLSRC} ${.TARGET}
249
250 unwind.h: unwind-generic.h
251         cp ${.ALLSRC} ${.TARGET}
252
253 copybits:
254         mkdir -p bits
255
256 .for F in ${CONF_HEADERS}
257 ${F:T}: copybits
258         cp ${SRCDIR}/config/${F} bits/
259 .endfor
260
261 # We can't add libiberty to the PATH because it will take the regex.o there
262 # before compiling regex.cc into an object file.  Just recompile
263
264 cp-demangle.c: ${GCCDIR}/libiberty/${.TARGET}
265         cp ${.ALLSRC} ${.TARGET}
266
267 # debug.cc, tree.cc and vec.cc are also getting pre-empted by gcc/ versions
268 debug-cxx.cc: ${SRCDIR}/src/c++11/debug.cc
269         cp ${.ALLSRC} ${.TARGET}
270
271 tree-cxx.cc: ${SRCDIR}/src/c++98/tree.cc
272         cp ${.ALLSRC} ${.TARGET}
273
274 vec-cxx.cc: ${SRCDIR}/libsupc++/vec.cc
275         cp ${.ALLSRC} ${.TARGET}
276
277 CLEANDIRS+=     bits
278 CLEANFILES+=    atomicity.cc basic_file.cc c++locale.cc \
279                 ctype_configure_char.cc unwind.h \
280                 cp-demangle.c debug-cxx.cc tree-cxx.cc vec-cxx.cc \
281                 c++config.h gthr.h gthr-default.h
282
283 .include <bsd.lib.mk>