OSDN Git Service

e02ba23584c804359f899ea79ed124b2e98a1b67
[mingw/mingw-org-wsl.git] / mingwrt / Makefile.in
1 # @configure_input@
2 # $Id$
3 #
4 # Makefile template for MinGW.org Runtime Library Package
5
6 PACKAGE_TARNAME := @PACKAGE_TARNAME@
7 PACKAGE_VERSION := @PACKAGE_VERSION@
8
9 # Written by Keith Marshall <keithmarshall@users.sourceforge.net>
10 # Copyright (C) 2014-2020, MinGW.org Project
11 #
12 #
13 # Permission is hereby granted, free of charge, to any person obtaining a
14 # copy of this software and associated documentation files (the "Software"),
15 # to deal in the Software without restriction, including without limitation
16 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 # and/or sell copies of the Software, and to permit persons to whom the
18 # Software is furnished to do so, subject to the following conditions:
19 #
20 # The above copyright notice and this permission notice (including the next
21 # paragraph) shall be included in all copies or substantial portions of the
22 # Software.
23 #
24 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 # AUTHORS OR THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 # DEALINGS IN THE SOFTWARE.
31
32
33 # The default target is "all"; declare it early, to avoid any possible
34 # inadvertent override from any included file.
35 #
36 all:
37 PACKAGE_RELEASE :=
38 PACKAGE_RELEASE_TAG := $(PACKAGE_VERSION)$(PACKAGE_RELEASE:%=-%)-mingw32
39
40 # Establish the minimum version of Windows which this build is required
41 # to support; note that we fix the default as WinNT4, but we define it in
42 # a manner which will allow a command line override, and may be adapted,
43 # ultimately, to support a configure time assignment.
44 #
45 NTDDI_VERSION := NTDDI_WINNT4
46 NTDDI_VERSION_SPEC := $(NTDDI_VERSION:%=-D NTDDI_VERSION=%)
47
48 # Build paths and macros.
49 #
50 srcdir = @srcdir@
51 top_srcdir = @top_srcdir@
52 mingwrt_srcdir = @srcdir@
53 w32api_srcdir = @w32api_srcdir@
54 abs_builddir = @abs_builddir@
55
56 CC = @CC@
57 CFLAGS = @CFLAGS@
58 CPPFLAGS = @CPPFLAGS@
59
60 OBJEXT = @OBJEXT@
61
62 AR = @AR@
63 ARFLAGS = @ARFLAGS@
64 RANLIB = @RANLIB@
65
66 AS = @AS@
67 COMPILE.sx = @COMPILE_SX@
68 DLLTOOL = @DLLTOOL@
69 STRIP = @STRIP@
70 NM = @NM@
71
72 all: @DEFAULT_MAKECMDGOALS@
73 all-mingwrt-stage-1-only: _mingw.h w32api.h
74 all-mingwrt-stage-1-only: all-mingwrt-objects all-mingwrt-libs
75 all-mingwrt-stage-1-and-2: all-mingwrt-stage-1-only all-mingwrt-dll
76 all-mingwrt: all-mingwrt-stage-1-and-2
77 all-gcc: all-mingwrt-stage-1-only
78
79 active_goals = $1-$2 $(if @include_deprecated@,$1-deprecated-$2)
80 all-deprecated-mingwrt-stage-1-only: all-deprecated-mingwrt
81
82 all-stage-1-only: $(call active_goals,all,mingwrt-stage-1-only)
83 all-stage-1-and-2: $(call active_goals,all,mingwrt)
84
85 # Installation paths and macros.
86 #
87 prefix = @prefix@
88 exec_prefix = @exec_prefix@
89 bindir = ${DESTDIR}@bindir@
90
91 datarootdir = @datarootdir@
92 docdir = ${DESTDIR}${datarootdir}/doc
93 includedir = ${DESTDIR}@includedir@
94 libdir = ${DESTDIR}@libdir@
95
96 htmldir = @htmldir@
97 pdfdir = @pdfdir@
98
99 mandir = ${DESTDIR}@mandir@
100 man3dir = ${mandir}/man$(man3ext)
101
102 man3ext = 3
103
104 INSTALL = @INSTALL@
105 INSTALL_DATA = @INSTALL_DATA@ $1 $2
106
107 mkinstalldirs = @MKDIR_P@ $(addprefix $1,$2)
108 LN_S = @LN_S@
109
110 # Include the makefile content which is common to both the mingwrt,
111 # and the w32api packages; this may be included within the top level
112 # source directory for each package individually, but we must also
113 # be prepared to find it in their common parent directory.
114 #
115 shared_include_file = $1$(if $(wildcard $1/$2),,/..)/$2
116 include $(call shared_include_file,${top_srcdir},Makefile.comm)
117
118 # Capture dependencies conveyed within source files, ensuring that
119 # header files are taken from our working source tree, and not from
120 # the build-time compiler's installation path.  (Note: we use -MD,
121 # and not -MMD in DEPFLAGS; since this package furnishes system
122 # headers, we need changes therein to trigger a rebuild).
123 #
124 sinclude *.d
125 DEPFLAGS = -MD -MP
126 INCLUDES = -nostdinc -I . -I ${top_srcdir}/include -I ${w32api_srcdir}/include \
127   -I ${top_srcdir} -I ${top_srcdir}/profile -iwithprefixbefore include
128
129 ALL_CFLAGS = $(CFLAGS) $(DEPFLAGS) $(INCLUDES) $(NTDDI_VERSION_SPEC)
130 ALL_CPPFLAGS = $(CPPFLAGS) $(DEPFLAGS) $(INCLUDES) $(NTDDI_VERSION_SPEC)
131
132 # The general case, for compiling object files from C source,
133 # requires a small adjustment to the default implicit rule.
134 #
135 %.$(OBJEXT): %.c
136         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
137
138 # In some cases, both ANSI and UTF-16LE enabled variants of object
139 # modules are compiled from a common source; the UTF-16LE variant is
140 # to be identified by prefixing a "w" to the object file name.
141 #
142 w%.$(OBJEXT): %.c
143         $(CC) -c -D UNICODE $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
144
145 # Compiling object files from *.sx sources: since GCC-4.3, these
146 # have been supported as a case agnostic alternative to *.S sources,
147 # for assembly language sources requiring initial interpretation by
148 # the C preprocessor; owing to the case-insensitive nature of file
149 # naming on MS-Windows, we should prefer these, but we must tell
150 # make how to compile them.
151 #
152 %.$(OBJEXT): %.sx
153         $(COMPILE.sx) $($*_cflags) -o $@ $<
154
155 # Several components of the distributable object code base are to
156 # be provided as free-standing object modules, (rather than being
157 # encapsulated within object libraries); we classify these within
158 # two distinct groups, for support of the current MSVCRT.DLL build
159 # case and the older CRTDLL build case, (noting that, ultimately,
160 # we may wish to deprecate this latter case).
161 #
162 all-mingwrt-objects: $(call active_goals,all,crt-objects)
163 all-deprecated-mingwrt-objects: all-deprecated-crt-objects
164
165 # Further note that, in addition to specifying the build time
166 # inventories for each of these object module categories, each
167 # module should be allocated to an associated installation group,
168 # whence it may be included in the eventual distribution, via a
169 # staged installation.
170 #
171 all-crt-objects install-crt-objects: $(addsuffix .$(OBJEXT), crt2 crtmt \
172   crtst dllcrt2 gcrt2 CRT_fp8 CRT_fp10 CRT_noglob binmode txtmode)
173
174 all-deprecated-crt-objects install-deprecated-crt-objects: \
175   $(addsuffix .$(OBJEXT), crt1 dllcrt1 gcrt1)
176
177 # The crt1.$(OBJEXT) and crt2.$(OBJEXT) modules, for the (deprecated)
178 # CRTDLL and the (current) MSVCRT build cases respectively, are built
179 # from a common crt1.c source.  Similarly, the dllcrt1.$(OBJEXT) and
180 # dllcrt2.$(OBJEXT) modules share the common dllcrt1.c source.
181 #
182 # Noting that the source files are named for the deprecated build
183 # case, but that we need to specify this while compiling, we need
184 # this explicit pattern rule...
185 #
186 vpath %.c ${mingwrt_srcdir}
187 $(addsuffix .$(OBJEXT), crt1 dllcrt1): %.$(OBJEXT): %.c
188         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -D__CRTDLL__ -o $@ $<
189
190 # ...while, for the current build case, we need an explicit mapping
191 # to identify the disparately named source file...
192 #
193 $(addsuffix .$(OBJEXT), crt2 dllcrt2): %2.$(OBJEXT): %1.c
194         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
195
196 # ...and for the pair of default FPU configuration selectors, we
197 # need to pass the configuration specification to the compiler, when
198 # compiling the common source for each of the two cases.
199 #
200 CRT_fp8.$(OBJEXT) CRT_fp10.$(OBJEXT): CRT_fp%.$(OBJEXT): CRT_fenv.c
201         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -D_CRT_FE_DFL_ENV=$* -o $@ $<
202
203 # The initialization hook for profiling code is inherited from Cygwin,
204 # where it is built as gcrt0.$(OBJEXT); we build it, unmodified, as each
205 # of gcrt1.$(OBJEXT) and gcrt2.$(OBJEXT), to satisfy the differing GCC
206 # specs file dependencies for each of the (deprecated) CRTDLL build
207 # and (current) MSVCRT build cases, respectively.
208 #
209 vpath %.c ${mingwrt_srcdir}/profile
210 $(addsuffix .$(OBJEXT), gcrt0 gcrt1 gcrt2): %.$(OBJEXT): gcrt0.c
211         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
212
213 # The primary runtime library is furnished by Microsoft, in the form
214 # of MSVCRT.DLL, as shipped with MS-Windows itself, or in any one of
215 # its versioned variants, as shipped with the MSVC compiler suite.
216 #
217 # We furnish the API for this runtime library, in the form of import
218 # libraries, for both release and debug DLL variants; furthermore,
219 # although we favour the freely available MSVCRT.DLL distributions,
220 # we also provide import libraries tailored to the non-free, and
221 # non-redistributable, MSVCRnn.DLL variants, corresponding to each
222 # of the following enumerated versions from the MSVC suite.
223 #
224 msvcrt_versions := 70 71 80 90 100
225 msvcrt_version_script = echo $1 | awk '\
226   { printf "0x%03d00000", gensub( "^[^1-9]*([0-9]*).*", "\\\\1", 1 ) \
227   }'
228
229 extra_objects_filter = $(filter %.$(OBJEXT),$1)
230 extra_objects_script = test -z "$(call extra_objects_filter,$2)" \
231   || { echo $(AR) $(ARFLAGS) $1 $(call extra_objects_filter,$2); \
232        $(AR) $(ARFLAGS) $1 $(call extra_objects_filter,$2); \
233      }
234
235 msvcrt_dllname_script = echo $1 | awk '\
236   /^c/{ print "crtdll.dll" } \
237   /^m/{ ext = gsub( "^.*d$$", "&" ) ? "d.dll" : ".dll"; \
238         printf "msvcr%s%s", gsub( "^[^1-9]*[0-9]+.*", "&" ) \
239           ? gensub( "^[^1-9]*([0-9]+).*", "\\\\1", 1 ) \
240           : "t", ext; \
241       }'
242
243 # We categorize our import libraries into "standard" (a.k.a. "release")
244 # versions, augmented by corresponding "debug" variants.
245 #
246 std_msvcrt := $(addprefix msvcr,t $(msvcrt_versions))
247 all_msvcrt := $(std_msvcrt) $(addsuffix d,$(std_msvcrt))
248
249 all-mingwrt-libs: $(call active_goals,all,libmsvcrt)
250 all-libmsvcrt install-mingwrt-libs: $(foreach name,$(all_msvcrt),lib$(name).a)
251 all-libcrtdll install-deprecated-mingwrt-libs: libcrtdll.a libcoldname.a
252 all-deprecated-mingwrt all-deprecated-libmsvcrt: all-libcrtdll
253
254 # For each import library to be built, we derive a tailored exports
255 # definition file, from a common source.
256 #
257 .SUFFIXES: .def.in .def
258 vpath %.def.in ${mingwrt_srcdir}/msvcrt-xref
259 $(addsuffix .def,$(all_msvcrt)): %.def: msvcrt.def.in
260         $(CC) -E -P -D__FILENAME__=$@ -D__DLLNAME__=$* \
261           -D__MSVCRT_VERSION__=`$(call msvcrt_version_script,$*)` \
262           -xc-header $< > $@
263
264 # To accommodate the __USE_MINGW_ANSI_STDIO feature, as specified
265 # in _mingw.h and stdio.h, while retaining a mechanism for accessing
266 # the MSVCRT.DLL functions which it replaces, we augment our import
267 # libraries with extra, alternatively named entry points, each of
268 # which implements a vectored jump to the regular entry point for
269 # the DLL implementation of its corresponding replaced function.
270 #
271 msvcrt_repl_prefix := __msvcrt
272 msvcrt_repl_funcs := printf fprintf sprintf vprintf vfprintf vsprintf
273 msvcrt_repl_funcs += free realloc
274
275 # This is kludgey, but dlltool lacks the selectivity to do the job
276 # well; (its --ext-prefix-alias option, which is what we would like
277 # to use, is rather like a chainsaw in the hands of a neurosurgeon,
278 # when he should have a scalpel).  We cannot selectively apply the
279 # prefix, to just the symbols of interest, so we end up by creating
280 # an initial copy of the import library, WITH the prefix applied to
281 # to EVERYTHING, (noting that, when we create this initial copy, we
282 # MUST specify the "--no-delete" option TWICE, to preserve temporary
283 # object files within the build tree); we then set this initial copy
284 # aside, and create a further copy WITHOUT the extra symbols, while
285 # duplicating the temporary object file name prefix retrieved from
286 # the initial copy, using this $(NM) lookup filter...
287 #
288 dlltool_temp_prefix = $(NM) $(1) | sed -n -e '/t.o:$$/{s///p;q' -e '}'
289
290 # ...after which, we apply the following $(NM) lookup filter to the
291 # initial copy of the import library file, to identify the specific
292 # temporary object files, defining the entry points to remap...
293 #
294 msvcrt_repl = $(call nmlookup,$1,$(msvcrt_repl_prefix)_,$(msvcrt_repl_funcs))
295 nmlookup = $(NM) $(1) | sed -n \
296   -e '/:$$/h;/^[0-7][0-7]*  *T  */{s///;H;g;s/\n//' \
297   $(foreach repl,$(3),-e 's/:_$(2)$(repl)$$//p') \
298   -e '}'
299
300 # ...and we add just that selection to the final copy of the import
301 # library, before explicitly deleting ALL temporary object files, and
302 # the (extended) initial copy of the import library.
303 #
304 vpath %.def ${mingwrt_srcdir}
305 $(foreach name,$(all_msvcrt) crtdll,lib$(name).a): lib%.a: %.def
306         $(DLLTOOL) --as $(AS) -k --input-def $< --no-delete --no-delete \
307           --dllname `$(call msvcrt_dllname_script,$*)` --output-lib $@  \
308           --ext-prefix-alias $(msvcrt_repl_prefix) && mv $@ lib$*-repl.a
309         $(DLLTOOL) --as $(AS) -k --input-def $< --output-lib $@ \
310           --temp-prefix `$(call dlltool_temp_prefix,lib$*-repl.a)` \
311           --dllname `$(DLLTOOL) --identify lib$*-repl.a`
312         $(AR) $(ARFLAGS) $@ `$(call msvcrt_repl,lib$*-repl.a)` \
313           $(filter %.$(OBJEXT),$^)
314         $(RM) lib$*-repl.a `$(call dlltool_temp_prefix,$@)`*
315
316 # Older versions of Microsoft's runtime libraries used a naming
317 # convention which is more consistent with POSIX, (and with other
318 # free software usage), than they currently employ; we support
319 # this earlier convention by mapping the old names to equivalent
320 # entry points in the current libraries, using libcoldname.a to
321 # map CRTDLL.DLL entries, and variants of libmoldname.a for each
322 # variant of MSVCRT.DLL
323 #
324 std_moldname := moldname $(addprefix moldname,$(msvcrt_versions))
325 all_moldname := $(std_moldname) $(addsuffix d,$(std_moldname))
326
327 all-mingwrt-libs: all-libmoldname
328 all-libmoldname install-mingwrt-libs: $(foreach name,$(all_moldname),lib$(name).a)
329 $(foreach name,coldname $(all_moldname),lib$(name).a): lib%.a: %.def
330         $(DLLTOOL) --as $(AS) -k -U --input-def $< --output-lib $@ \
331           --dllname `$(call msvcrt_dllname_script,$*)`
332         $(AR) $(ARFLAGS) $@ $(call extra_objects_filter,$^)
333
334 # The oldname libraries are also a convenient place to provide a
335 # few additional functions, with no direct implementation in the
336 # Microsoft DLLs, but which nevertheless are easily emulated.
337 #
338 $(foreach name,coldname $(all_moldname),lib$(name).a): $(addsuffix .$(OBJEXT), \
339   isascii iscsym iscsymf toascii)
340
341 # Selected versions of the oldname libraries also provide a
342 # convenient vehicle for delivery of stubs, emulating functions
343 # which appear in later MSVCRT versions, and which we also wish
344 # to support in conjunction with earlier versions.
345 #
346 $(foreach name,moldname $(addprefix moldname,70 71),lib$(name).a) \
347 $(foreach name,moldname $(addprefix moldname,70 71),lib$(name)d.a): \
348   strnlen.jmpstub.$(OBJEXT) wcsnlen.jmpstub.$(OBJEXT)
349
350 coldname.def: %.def: ${mingwrt_srcdir}/moldname.def.in
351         $(CC) -C -E -P -D__FILENAME__=$@ -D__CRTDLL__ -xc-header $< > $@
352
353 $(addsuffix .def,$(all_moldname)): %.def: ${mingwrt_srcdir}/moldname.def.in
354         $(CC) -C -E -P -D__FILENAME__=$@ -xc-header $< > $@
355
356 vpath %.sx ${mingwrt_srcdir}
357 all-mingwrt-libs install-mingwrt-libs: libmingw32.a libmingwex.a libmemalign.a
358 libmingw32.a: $(addsuffix .$(OBJEXT), CRTinit CRTglob setargv \
359   CRTfmode cpu_features CRT_fp10 txtmode main dllmain gccmain crtst \
360   tlsmcrt tlsmthread tlssup tlsthrd pseudo-reloc pseudo-reloc-list)
361
362 libmingw32.a libmingwex.a libmemalign.a libm.a libmingwthrd.a libgmon.a:
363         $(AR) $(ARFLAGS) $@ $?
364
365 # Complex math objects, to be included in libmingwex.a
366 # (FIXME: consider whether these might be more suitably
367 # delivered in libm.a; ISO-C99 says they belong in the
368 # math library, which by POSIX convention, is libm.a)
369 #
370 vpath %.c ${mingwrt_srcdir}/mingwex
371 vpath %.c ${mingwrt_srcdir}/mingwex/complex
372 libmingwex.a: $(addsuffix .$(OBJEXT), cabs cabsf cabsl cacos cacosf \
373   cacosh cacoshf cacoshl cacosl casin casinf casinh casinhf casinhl casinl \
374   catan catanf catanh catanhf catanhl catanl ccos ccosf ccosh ccoshf ccoshl \
375   ccosl cexp cexpf cexpl clog clogf clogl cpow cpowf cpowl cproj cprojf \
376   cprojl csin csinf csinh csinhf csinhl csinl csqrt csqrtf csqrtl \
377   ctan ctanf ctanh ctanhf ctanhl ctanl)
378
379 libmingwex.a: $(addsuffix .$(OBJEXT), isblank iswblank)
380
381 # Floating point environment control, in libmingwex.a
382 # (FIXME: once again, maybe better delivered in libm.a)
383 #
384 libmingwex.a: $(addsuffix .$(OBJEXT), fegetenv fesetenv feupdateenv \
385   feclearexcept feraiseexcept fetestexcept feholdexcept fegetexceptflag \
386   fesetexceptflag fegetround fesetround)
387
388 # David Gay's "gdtoa" API, provided in libmingwex.a, and used
389 # by MinGW's ISO-C conforming printf() routines for formatting
390 # floating point output.
391 #
392 vpath %.c ${mingwrt_srcdir}/mingwex/gdtoa
393 libmingwex.a: $(addsuffix .$(OBJEXT), g__fmt gethex strtopx g_dfmt gdtoa \
394   gmisc smisc sum g_ffmt hd_init strtodg ulp dmisc g_xfmt hexnan strtodnrp \
395   dtoa misc strtof)
396
397 # "inttypes" conversion routines, provided in libmingwex.a
398 #
399 libmingwex.a: $(addsuffix .$(OBJEXT), \
400   imaxdiv strtoimax strtoumax wcstoimax wcstoumax)
401
402 # Additional math functions, augmenting Microsoft's paltry
403 # selection, also delivered in libmingwex.a, (FIXME: and yet
404 # again, perhaps libm.a would be a better fit)
405 #
406 vpath %.c ${mingwrt_srcdir}/mingwex/math
407 vpath %.s ${mingwrt_srcdir}/mingwex/math
408 libmingwex.a: $(addsuffix .$(OBJEXT), cosf cosl acosf acosl sinf sinl asinf \
409   asinl tanf tanl atanf atanl atan2f atan2l coshf coshl acosh acoshf acoshl \
410   sinhf sinhl asinh asinhf asinhl tanhf tanhl atanh atanhf atanhl cbrt cbrtf \
411   cbrtl ceilf ceill copysign copysignf copysignl erfl s_erf sf_erf expf expl \
412   exp2 exp2f exp2l expm1 expm1f expm1l fabs fabsf fabsl fdim fdimf fdiml \
413   floorf floorl fma fmaf fmal fmax fmaxf fmaxl fmin fminf fminl fmodf fmodl \
414   fp_consts fp_constsf fp_constsl fpclassify fpclassifyf fpclassifyl frexpf \
415   frexpl fucom hypotf hypotl ilogb ilogbf ilogbl isnan isnanf isnanl ldexpf \
416   ldexpl lgamma lgammaf lgammal llrint llrintf llrintl log10f log10l log1p \
417   log1pf log1pl log2 log2f log2l logb logbf logbl logf logl lrint lrintf \
418   lrintl llround llroundf llroundl lround lroundf lroundl modff modfl \
419   nearbyint nearbyintf nearbyintl nextafterf nextafterl nexttoward nexttowardf \
420   powf powl powi powif powil remainder remainderf remainderl remquo remquof \
421   remquol rint rintf rintl round roundf roundl scalbn scalbnf scalbnl signbit \
422   signbitf signbitl sqrtf sqrtl tgamma tgammaf tgammal trunc truncf truncl \
423   x87cvt x87cvtf x87log x87log1p x87pow x87remquo)
424
425 # Replacement I/O functions in libmingwex.a, providing better POSIX
426 # compatibility than their Microsoft equivalents.
427 #
428 vpath %.c ${mingwrt_srcdir}/mingwex/stdio
429 libmingwex.a: $(addsuffix .$(OBJEXT), btowc fprintf fseeki64 ftelli64 \
430   fwrite ofmtctl pformat printf snprintf sprintf vfprintf vfscanf vfwscanf \
431   vprintf vscanf vsnprintf vsprintf vsscanf vswscanf vwscanf)
432
433 # pformat.$(OBJEXT) needs an explicit build rule, since we need to
434 # specify an additional header file path.
435 #
436 PFORMAT_CFLAGS = -I ${mingwrt_srcdir}/mingwex/gdtoa
437 pformat.$(OBJEXT): %.$(OBJEXT): %.c
438         $(CC) -c $(ALL_CFLAGS) $(PFORMAT_CFLAGS) $< -o $@
439
440 # To support Microsoft's DLL version specific exponent digits control,
441 # and "%n" format availability control APIs, in a DLL version agnostic
442 # manner, we also provide the following set of wrapper functions:
443 #
444 libmingwex.a: $(addsuffix fmt.$(OBJEXT),varo crto geto seto crtn getn setn)
445 $(addsuffix fmt.$(OBJEXT),varo crto geto seto crtn getn setn): %.$(OBJEXT): ofmt.c
446         $(CC) -c $(ALL_CFLAGS) -D__$*__ -fno-align-functions -o $@ $<
447
448 # Functions comprising the MinGW aligned heap management API:
449 #
450 LIBMINGWEX_MEMALIGN := memalign-lwm memalign-base aligned-malloc
451 LIBMINGWEX_MEMALIGN += aligned-realloc memalign-realloc realloc free
452
453 LIBMINGWEX_MEMALIGN_OBJECTS = $(addsuffix .$(OBJEXT),$(LIBMINGWEX_MEMALIGN))
454
455 $(LIBMINGWEX_MEMALIGN_OBJECTS): %.$(OBJEXT): memalign.c
456         $(CC) -c $(CFLAGS) -D__mingw_$(subst -,_,$*)_case $< -o $@
457
458 libmingwex.a: $(LIBMINGWEX_MEMALIGN_OBJECTS)
459
460 # Some additional miscellaneous functions, in libmingwex.a
461 #
462 libmingwex.a: $(addsuffix .$(OBJEXT), ftruncate getdelim gettimeofday)
463 libmingwex.a: $(addsuffix .$(OBJEXT), glob getopt basename dirname nsleep)
464 libmingwex.a: $(addsuffix .$(OBJEXT), clockapi clockres clockset clocktime)
465 libmingwex.a: $(addsuffix .$(OBJEXT), insque remque tdelete tfind tsearch twalk)
466 libmingwex.a: $(addsuffix .$(OBJEXT), dirent wdirent dlfcn strerror_r strtok_r)
467 libmingwex.a: $(addsuffix .$(OBJEXT), mkstemp mkdtemp memcrypt cryptnam setenv)
468
469 vpath %.s ${mingwrt_srcdir}/mingwex
470 vpath %.sx ${mingwrt_srcdir}/mingwex
471 libmingwex.a: $(addsuffix .$(OBJEXT), codeset mbrconv mbrscan mbrlen)
472 libmingwex.a: $(addsuffix .$(OBJEXT), mbrtowc mbsrtowcs strnlen wcharmap)
473 libmingwex.a: $(addsuffix .$(OBJEXT), wcrtomb wcsrtombs wcsnlen wcstod wcstof)
474 libmingwex.a: $(addsuffix .$(OBJEXT), wcstofp wcstold wctob wctrans wctype)
475 libmingwex.a: $(addsuffix .$(OBJEXT), wmemchr wmemcmp wmemcpy wmemmove wmemset)
476
477 # The wcsnlen() function, enumerated above, is an adaptation of strnlen();
478 # we need a specific rule to compile it, from shared source.
479 #
480 wcsnlen.$(OBJEXT): strnlen.sx
481         $(COMPILE.sx) -D_UNICODE $^ -o $@
482
483 # Similarly, the wcstod(), wcstof(), and wcstold() functions are
484 # compiled from the common wcstofp.c source file.
485 #
486 $(addsuffix .$(OBJEXT), wcstod wcstof wcstold): %.$(OBJEXT): wcstofp.c
487         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -D FUNCTION=$* -o $@ $<
488
489 # For the math sources, we support the convention that a single
490 # quux_generic.c source file will produce three objects: quux.o,
491 # quuxf.o, and quuxl.o; since a change in the common source file
492 # will require all three objects to be recompiled, we may handle
493 # this with a single, multiple target, pattern rule.
494 #
495 $(addsuffix .$(OBJEXT), % %f %l): %_generic.c
496         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $*.$(OBJEXT) $<
497         $(CC) -c -D FUNCTION=$*f $(CPPFLAGS) $(ALL_CFLAGS) -o $*f.$(OBJEXT) $<
498         $(CC) -c -D FUNCTION=$*l $(CPPFLAGS) $(ALL_CFLAGS) -o $*l.$(OBJEXT) $<
499
500 # The llround.o, llroundf.o, and llroundl.o variants are a special
501 # case of the preceding rule; (the source is lround_generic.c rather
502 # than llround_generic.c).  We can handle this using the following
503 # static pattern rule, (compiling each object individually).
504 #
505 $(addsuffix .$(OBJEXT), llround llroundf llroundl): %.$(OBJEXT): lround_generic.c
506         $(CC) -c -D FUNCTION=$* $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
507
508 # Similarly, we may need to compile quux.o, quuxf.o, and quuxl.o
509 # variants from a common quux_generic.sx assembly language file.
510 #
511 vpath %.sx ${mingwrt_srcdir}/mingwex/math
512 $(addsuffix .$(OBJEXT), % %f %l): %_generic.sx
513         $(COMPILE.sx) -D_$*_source -o $*.$(OBJEXT) $<
514         $(COMPILE.sx) -D_$*f_source -o $*f.$(OBJEXT) $<
515         $(COMPILE.sx) -D_$*l_source -o $*l.$(OBJEXT) $<
516
517 # Several generically implemented functions also require separate
518 # assembly of their generic back-end support routines.
519 #
520 x87%.$(OBJEXT): %_generic.sx
521         $(COMPILE.sx) -o $@ $<
522
523 # Historically, MinGW.org's libm.a has been a dummy, delivering
524 # nothing of value; FIXME: IMO, this sucks; it should deliver the
525 # non-MSVCRT.DLL math functions, as noted above.
526 #
527 all-mingwrt-libs install-mingwrt-libs: libm.a
528 libm.a: libm_dummy.$(OBJEXT)
529 libm_dummy.c: Makefile
530         echo "int __mingw_libm_dummy;" > $@
531
532 # The mingwrt headers define a number of functions which are normally
533 # expected to be compiled as inline code.  Each such function must also
534 # be provided with an externally visible entry point; we provide such
535 # entry points as stubs in libmingwex.a, via the following rules:
536 #
537 sinclude Makefile.stub
538 libstub_refnames = grep -lr '__$1.*FUNCTION *=' ${mingwrt_srcdir}
539 jmpstub_prerequisites := $(shell $(call libstub_refnames,JMPSTUB)/include)
540 libimpl_prerequisites := $(shell $(call libstub_refnames,LIBIMPL)/include)
541 Makefile.stub: Makefile $(jmpstub_prerequisites) $(libimpl_prerequisites)
542         echo "# $@: automatically generated file -- do not edit!" > $@
543         $(call jmpstub_awk_script,$(jmpstub_prerequisites)) >> $@
544         $(call libimpl_awk_script,$(libimpl_prerequisites)) >> $@
545         echo "# $@: end of file" >> $@
546
547 # Stubs are categorized into either of JMPSTUB or LIBIMPL classes;
548 # the rules for building the JMPSTUP inplementations are written to
549 # Makefile.stub, by processing each of their defining header files
550 # through the following awk script...
551 #
552 jmpstub_awk_script = test -z "$1" || awk '\
553   BEGIN { \
554     symbol = "([A-Z_a-z][A-Z_a-z0-9]*)"; \
555     fmt = "\nlib%s.a: %s\n%s: jmpstub.sx\n\t$$(COMPILE.sx) %s -o $$@ $$^\n"; \
556   } \
557   /__JMPSTUB(__)? *[(].*FUNCTION/ { \
558     FUNCTION = gensub( ".*[ ,(:]FUNCTION *= *"symbol".*", "\\1", 1 ); \
559     LIB = match( $$0, ".*[ ,(:]LIB *= *"symbol, altlib ) ? altlib[1] : "mingwex"; \
560     OBJNAME = gensub( "_*(.*)_*", "\\1", 1, FUNCTION )".jmpstub.$$(OBJEXT)"; \
561     OBJNAME_CFLAGS = "-D FUNCTION="FUNCTION; \
562     if( match( $$0, ".*[ ,(:]DLLENTRY *= *"symbol, alias ) ) \
563       OBJNAME_CFLAGS = OBJNAME_CFLAGS" -D DLLENTRY="alias[1]; \
564     else if( match( $$0, ".*[ ,(:]REMAPPED *= *"symbol, alias ) ) \
565       OBJNAME_CFLAGS = OBJNAME_CFLAGS" -D REMAPPED="alias[1]; \
566     printf fmt, LIB, OBJNAME, OBJNAME, OBJNAME_CFLAGS; \
567   } \
568   END { \
569     printf "\n"; \
570   }' $1
571
572 # ...while this establishes the dependencies which apply for each
573 # of those in the LIBIMPL class.
574 #
575 libimpl_awk_script = test -z "$1" || awk '\
576   BEGIN { \
577     symbol = "([A-Z_a-z][A-Z_a-z0-9]*)"; \
578     fmt = "\nlib%s.a: %s\n%s.libimpl: %s\n"; \
579   } \
580   /__LIBIMPL(__)? *[(].*FUNCTION/ { \
581     FUNCTION = gensub( ".*[ ,(:]FUNCTION *= *"symbol".*", "\\1", 1 ); \
582     LIB = match( $$0, ".*[ ,(:]LIB *= *"symbol, altlib ) ? altlib[1] : "mingwex"; \
583     OBJNAME = gensub( "_*(.*)_*", "\\1", 1, FUNCTION )".libimpl.$$(OBJEXT)"; \
584     printf fmt, LIB, OBJNAME, FUNCTION, FILENAME; \
585   } \
586   END { \
587     printf "\n"; \
588   }' $1
589
590 # In contrast to JMPSTUB implementations, which are best handled
591 # by individual compilation rules in Makefile.stub, generic rules
592 # are sufficient for all LIBIMPL implementations; in each case, we
593 # filter the static attribute from each defined implementation, in
594 # its defining header file, to create an intermediate C source for
595 # each individual function; (note that we also remove any pragma
596 # which identifies the originating file as a system header).
597 #
598 libimpl_sed_script = sed \
599   -e '/pragma .* system_header/d' \
600   -e '/__CRT_INLINE  *__LIBIMPL.*FUNCTION *= *$1[ ,)].*)/d' \
601   -e 's/__LIBIMPL.*ALIAS *= *$1[ ,)].*)/__attribute__((__alias__("$1")))/' \
602   -e '/__CRT_ALIAS  *__LIBIMPL.*FUNCTION *= *$1[ ,)].*)/d'
603
604 LIBIMPL_CFLAGS = $(CFLAGS) $(INCLUDES) $(LIBIMPL_EXTRA_CFLAGS)
605 LIBIMPL_EXTRA_CFLAGS = -fno-align-functions -Wno-deprecated-declarations
606
607 # LIBIMPL dependencies are tracked using zero sized name.libimpl
608 # files; the intermediate C files are generated as a side effect
609 # of resolving these dependencies...
610 #
611 %.libimpl:
612         $(call libimpl_sed_script,$*) $< > $@.c
613         > $@
614
615 # ...and ultimately discarded, after the requisite object file
616 # has been compiled; (note that this creates a vulnerability due
617 # to possible loss of the object file, while the tracking file is
618 # still in place; to circumvent this, we must be able to force a
619 # remake of the tracking file, so also regenerating the .c file,
620 # before it is compiled).
621 #
622 libimpl_remake = { $(RM) $1; $(MAKE) --no-print-directory $1; }
623 %.libimpl.$(OBJEXT): %.libimpl
624         test -f $<.c || $(call libimpl_remake,$<)
625         $(CC) -c $(CPPFLAGS) $(LIBIMPL_CFLAGS) -o $@ $<.c
626         $(RM) $<.c
627
628 # Thread support libraries.
629 #
630 all-mingwrt-libs install-mingwrt-libs: libmingwthrd.a libmingwthrd_old.a
631 libmingwthrd.a libmingwthrd_old.a: crtmt.$(OBJEXT)
632 mingwthrd_old.def mingwm10.dll: $(addsuffix .$(OBJEXT), mthr mthr_init)
633 mingwthrd_old.def:
634         $(DLLTOOL) --as $(AS) --output-def $@ $^
635
636 libmingwthrd_old.a: lib%.a: %.def
637         $(DLLTOOL) --as $(AS) --input-def $< --dllname mingwm10.dll --output-lib $@
638         $(AR) $(ARFLAGS) $@ $(call extra_objects_filter,$^)
639
640 all-mingwrt-dll install-mingwrt-dll-files: mingwm10.dll
641 mingwm10.dll: mingwthrd_old.def
642         $(CC) -shared -o $@ -Wl,--image-base,0x6FBC0000 \
643           -Wl,--entry,_DllMainCRTStartup@12 $^
644
645 # Code profiling support, using the GNU profiling library; (note
646 # that applications using this library MUST be licensed to comply
647 # with the GNU General Public License).
648 #
649 all-mingwrt-libs install-mingwrt-libs: libgmon.a
650 libgmon.a: $(addsuffix .$(OBJEXT), gmon mcount profil)
651
652
653 # Optional DLL Generation Rules
654 # -----------------------------
655 #
656 # The following rules are provided to accommodate optional delivery
657 # of certain of the static libraries, generated as components of this
658 # package, in the alternative form of DLLs, each with an accompanying
659 # import library.  Each such DLL should be versioned, ideally with an
660 # explicitly specified version number, but we provide this fall back
661 # as a catch-all default for any which is not so specified; (all such
662 # version specifications should be in the "current:revision:age" form,
663 # conforming to the GNU-libtool convention).
664 #
665 DLLVERSION = "0:0:0"
666
667 # DLLVERSION must be specified for each DLL file itself, and also for
668 # the associated installation and distribution rules; the appropriate
669 # dependencies may be specified by use of this function macro:
670 #
671 optional_dll = mingwrt-$1-optdist install-$1-optional-dll $2
672
673 # Generally, we should prefer to have explicit version specifications,
674 # relating individually to each DLL; these are specified in VERSION.m4,
675 # and propagated here via configure time substitution.
676 #
677 $(call optional_dll,libmingwex,@MAP_LIBMINGWEX_A_DLLVERSION@)
678
679 # For convenience, we implement the DLL build rule in the form of a
680 # generic pattern rule, invoked in the form of a request to build any
681 # version-agnostic import library; the versioned DLL is then built as
682 # a side effect of building the import library.
683 #
684 # Note that, in addition to the obvious dependency on the originating
685 # static library, we also make this depend on configure; this ensures
686 # that DLL version changes, specified in VERSION.m4, are propagated.
687 #
688 # Further note that we use an alternatively named reference link to
689 # the originating static library, as code source for the DLL, rather
690 # than the original name; this is to work around a limitation of the
691 # handling of --whole-archive, by GNU-ld, which suppresses creation
692 # of an exports table, in the event that the same static library is
693 # named among GCC's implicit default libraries, after reverting to
694 # --no-whole-archive operation.
695 #
696 %.dll.a: %.a configure
697         $(RM) $@; $(LN_S) -f $< tmp$<
698         $(CC) $(call a2dll,tmp$<,$(call dllname,$*)) -L. -Wl,--out-implib=$@
699         $(RM) tmp$<
700
701 dllname = $1-$(dllsuffix).dll $(LIBGCC_LINK_OPTION)
702 a2dll = -shared -o $2 -Wl,--whole-archive $1 -Wl,--no-whole-archive
703 dllsuffix = `echo $(DLLVERSION) | awk -F: '{printf "%d",$$1-$$3}'`
704
705 all-optional-dlls: all-mingwrt-optional-dlls
706 all-mingwrt-optional-dlls: libmingwex.dll.a
707
708 # In most optional DLL build cases, we should avoid creating any
709 # unnecessary dependency on (known to be broken) -shared-libgcc
710 #
711 libmingwex.dll.a: LIBGCC_LINK_OPTION = -static-libgcc
712
713
714 # Installation Rules
715 # ------------------
716 #
717 # Users may expect to be able to specify DESTDIR, to stage the
718 # following stock installation directories outside of the regular
719 # "as configured" installation tree; unfortunately, this expectation
720 # MUST fail, when the stock path is in MS-Windows absolute format, so
721 # we provide an exception mechanism to forbid such usage, and we
722 # proceed to create the directories only when the exception is
723 # NOT triggered.
724 #
725 .PHONY: DESTDIR-UNSUPPORTED
726 bindir docdir includedir libdir mandir htmldir pdfdir:
727         @test -z "$(strip ${DESTDIR})" || case $($@) in ${DESTDIR}?:*) \
728           $(MAKE) --no-print-directory reject=$@ DESTDIR-UNSUPPORTED;; \
729           esac
730         $(call mkinstalldirs,,$($@))
731
732 # Note: we MUST use a recursive make invocation here, as the
733 # "error" function within the accompanying diagnostics would be
734 # triggered, irrespective of its placement in an unexecuted
735 # branch of the above exception trapping shell code.
736 #
737 DESTDIR-UNSUPPORTED:
738         $(call MSG_DESTDIR_FORBIDDEN,$(reject),$($(reject):${DESTDIR}%=%))
739
740 # The following macros, which rely heavily on GNU make's "call"
741 # function, define the diagnostics to be emitted, when the DESTDIR
742 # exception is triggered.
743 #
744 QUOTE = `$1'#'`
745 MSG_DESTDIR_FORBIDDEN = \
746   $(warning *** $(call MSG_DESTDIR_PATH_CONFLICT,$1,Win32,$2);) \
747   $(error try $(call QUOTE,$(call MSG_DESTDIR_ALTERNATIVE,$1,$2)) instead)
748 MSG_DESTDIR_BAD_PATH = DESTDIR is not supported when $1 contains $2 path $3
749 MSG_DESTDIR_PATH_CONFLICT = $(call MSG_DESTDIR_BAD_PATH,$1,$2,$(call QUOTE,$3))
750 MSG_DESTDIR_ALTERNATIVE = make install $1="$(call MSG_DESTDIR_TRANSFORM,$2)"
751 MSG_DESTDIR_TRANSFORM = ${DESTDIR}$(shell echo $1 | sed 's/^.://')
752
753 # Install everything.
754 #
755 install: inst@DEFAULT_MAKECMDGOALS@
756 install-stage-1-only: install-headers install-libdir-objects install-libs
757 install-stage-1-and-2: install-stage-1-only install-bin
758 install-gcc: install-stage-1-only
759
760 install-strip: install-strip-mingwrt
761 install-strip-%:
762         $(MAKE) --no-print-directory \
763           STRIP_DATA='cd ${libdir}; $(STRIP) --strip-unneeded $$1' \
764           STRIP_DLL='cd ${bindir}; $(STRIP) $$1' install-$*
765
766 # Install licence files.
767 #
768 install-license: install-mingwrt-license
769 install-licence install-mingwrt-licence: %-licence: %-license
770
771 vpath DISCLAIMER ${mingwrt_srcdir}
772 vpath COPYING ${mingwrt_srcdir}/profile
773 vpath CYGWIN_LICENSE ${mingwrt_srcdir}/profile
774 mingwrt-license-files: COPYING CYGWIN_LICENSE DISCLAIMER
775
776 # FIXME: The following rule is generalized, such that it may accommodate
777 # both mingwrt and w32api, (and other packages); thus, it should ideally
778 # be relocated into a common (shared) Makefile fragment.
779 #
780 install-mingwrt-license install-w32api-license: install-%: docdir %-files
781 %-license-files:
782         $(call mkinstalldirs,,${docdir}/$*/$(PACKAGE_VERSION))
783         $(call INSTALL_DATA,$^,${docdir}/$*/$(PACKAGE_VERSION))
784
785 # Install headers associated with the MinGW runtime libraries.
786 #
787 includedirs: mingwrt-includedirs
788 install-headers install-mingwrt: install-mingwrt-headers
789
790 mingwrt-includedirs: includedir $(eval mingwrt_include_subdirs=sys parts)
791         $(call mkinstalldirs,${includedir}/,$(mingwrt_include_subdirs))
792
793 SUB_HEADERS_PRESENT = echo $1/include/$2/*.h | grep -v '[*]' > /dev/null
794 INSTALL_SUB_HEADERS = $(call INSTALL_DATA,$1/include/$2/*.h,${includedir}/$2)
795
796 install-mingwrt-headers: _mingw.h mingwrt-includedirs
797         $(call INSTALL_DATA,_mingw.h,${includedir})
798         $(call INSTALL_DATA,${mingwrt_srcdir}/include/*.h,${includedir})
799         for dir in $(mingwrt_include_subdirs); do \
800           if $(call SUB_HEADERS_PRESENT,${mingwrt_srcdir},$$dir); then \
801             $(call INSTALL_SUB_HEADERS,${mingwrt_srcdir},$$dir); \
802             fi; \
803           done
804         $(call INSTALL_DATA,${mingwrt_srcdir}/profile/*.h,${includedir})
805
806 # Install libraries, and supporting free standing object files.
807 #
808 install-libs install-mingwrt: install-mingwrt-libdir-libs
809 install-libdir-objects install-mingwrt: install-mingwrt-libdir-objects
810
811 install-mingwrt-libdir-libs: libdir $(call active_goals,install,mingwrt-libs)
812 install-mingwrt-libdir-objects: libdir $(call active_goals,install,crt-objects)
813
814 install-crt-objects install-deprecated-crt-objects \
815 install-mingwrt-libs install-deprecated-mingwrt-libs:
816         $(call INSTALL_DATA,$^,${libdir})
817         $(if $(STRIP_DATA),$(call STRIP_DATA,$^))
818
819
820 # Install DLLs.
821 #
822 install-mingwrt: install-mingwrt-dll
823 install-bin install-dll: install-mingwrt-dll
824 install-mingwrt-bin install-w32api-bin: install-%-bin: install-%-dll
825 install-mingwrt-dll install-w32api-dll: install-%-dll: bindir install-%-dll-files
826 install-%-dll-files:
827         $(call INSTALL_DATA,$^,${bindir})
828         $(if $(STRIP_DLL),$(call STRIP_DLL,$^))
829
830 install-optional-dlls: install-mingwrt-optional-dlls
831 install-mingwrt-optional-dlls: install-libmingwex-optional-dll
832 install-%-optional-dll: %.dll.a bindir libdir
833         $(call INSTALL_DATA,$<,${libdir})
834         $(call INSTALL_DATA,$(call dllname,$*),${bindir})
835         $(if $(STRIP_DLL),$(call STRIP_DLL,$(call dllname,$*)))
836         $(if $(STRIP_DATA),$(call STRIP_DATA,$<))
837
838
839 # Install manpages.
840 #
841 vpath %.man ${mingwrt_srcdir}/man
842 manpages = $(basename $(notdir $(wildcard $1/man/*.$2.man)))
843 mancopy = $(call manpage_ref,$1,$2.man)$(eval $1: %: %.$0-recursive)
844 manpage_ref = $(eval $1: export reference_manpage = $2)
845
846 install-man install-manpages: install-mingwrt-manpages
847 mingwrt-man$(man3ext): $(call manpages,${mingwrt_srcdir},$(man3ext))
848 install-mingwrt-manpages: mandir mingwrt-man$(man3ext)
849
850 mingwrt-man%:
851         $(call mkinstalldirs,,${man$*dir})
852         $(call INSTALL_DATA,$^,${man$*dir})
853         $(RM) $^
854
855 %: %.man
856         $(call format_manpage,$(basename $*),$(suffix $*),$<) $< > $@
857
858 format_manpage = sed \
859   -e "s/%PAGEREF%/`echo $1 | tr a-z A-Z` $(2:.%=%) `date -r $3 +%d-%b-%Y`/"
860
861 manpage_copy = $(eval $1$3: $2.$3)$(call mancopy,$2.$3,$4)
862 $(call manpage_copy,mingwrt-man,basename,$(man3ext),dirname.$(man3ext))
863 $(call manpage_copy,mingwrt-man,getdelim,$(man3ext),getline.$(man3ext))
864
865 %.mancopy-recursive:
866         $(MAKE) --no-print-directory $*.mancopy
867
868 %.mancopy: $(reference_manpage)
869         $(call format_manpage,$(basename $*),$(suffix $*),$<) $< > $*
870
871
872 # Undo Installation
873 # -----------------
874 #
875 uninstall: uninstall-mingwrt
876 uninstall-bin uninstall-dll uninstall-mingwrt: uninstall-mingwrt-dll
877 uninstall-optional-dlls uninstall-mingwrt: uninstall-mingwrt-optional-dlls
878 uninstall-mingwrt: uninstall-mingwrt-headers uninstall-mingwrt-libdir-libs
879 uninstall-mingwrt: uninstall-mingwrt-libdir-objects
880
881 REMOVE_HEADERS = cd $1 && $(RM) $(notdir $(wildcard $2))
882
883 uninstall-mingwrt-headers:
884         $(call REMOVE_HEADERS,${includedir},${mingwrt_srcdir}/include/*.h)
885         for dir in $(mingwrt_include_subdirs); do \
886           files=`cd ${mingwrt_srcdir}/include/$$dir && echo *.h`; \
887           (cd ${includedir}/$$dir && $(RM) $$files); \
888           done
889         $(call REMOVE_HEADERS,${includedir},${mingwrt_srcdir}/profile/*.h)
890
891 uninstall-mingwrt-dll uninstall-mingwrt-optional-dlls \
892 uninstall-mingwrt-libdir-objects uninstall-mingwrt-libdir-libs: un%:
893         $(MAKE) --no-print-directory mkinstalldirs= \
894           INSTALL_DATA='cd $$2 && $(RM) $$1' $*
895
896
897 # Test Suite
898 # ----------
899 #
900 .PHONY: check-recursive
901 check test tests: check-recursive
902 check-recursive:
903         $(MAKE) -C tests $@
904
905
906 # Distribution
907 # ------------
908 #
909 .PHONY: dist
910 dist: devdist dlldist licdist mandist optdist srcdist
911         $(RM) -r dist/mingwrt dist/w32api
912
913 mingwrt-dist-staged w32api-dist-staged: %-dist-staged:
914         $(RM) -r dist/$*
915         $(MAKE) --no-print-directory prefix=`pwd`/dist/$* install-strip-$*
916
917 devdist: mingwrt-devdist
918 mingwrt_devdist_objects = dist/mingwrt/lib/*.$(OBJEXT)
919 mingwrt-devdist w32api-devdist: %-devdist: %-dist-staged
920         cd dist/$* && tar chf - --hard-dereference include lib | \
921           xz -c > ../$*-$(PACKAGE_RELEASE_TAG)-dev.tar.xz
922
923 dlldist: mingwrt-dlldist
924 mingwrt-dlldist: %-dlldist: %-dist-staged
925         cd dist/$* && tar chf - --hard-dereference bin | \
926           xz -c > ../$*-$(PACKAGE_RELEASE_TAG)-dll.tar.xz
927
928 licdist: mingwrt-licdist
929 mingwrt-licdist w32api-licdist: %-licdist:
930         $(RM) -r tmp
931         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-$*-licence
932         cd tmp && tar chf - --hard-dereference * | \
933           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-lic.tar.xz
934         $(RM) -r tmp
935
936 mandist: mingwrt-mandist
937 mingwrt-mandist: %-mandist:
938         $(RM) -r tmp
939         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-$*-manpages
940         cd tmp && tar chf - --hard-dereference share | \
941           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-man.tar.xz
942         $(RM) -r tmp
943
944 optdist: mingwrt-optdist
945 mingwrt-optdist: mingwrt-libmingwex-optdist
946
947 mingwrt-%-optdist:
948         $(RM) -r tmp
949         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-strip-$*-optional-dll
950         cd tmp && tar chf - --hard-dereference bin | \
951           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-dll-$(dllsuffix).tar.xz
952         cd tmp && tar chf - --hard-dereference lib | \
953           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-dev.tar.xz
954         $(RM) -r tmp
955
956 srcdist: mingwrt-srcdist
957 mingwrt-srcdist: mingwrt-srcdist-dir mingwrt-srcdist-files
958         cd dist && tar chf - $(PACKAGE_TARNAME)-$(PACKAGE_VERSION) | \
959           xz -c > $(PACKAGE_TARNAME)-$(PACKAGE_RELEASE_TAG)-src.tar.xz
960         $(RM) -r dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
961
962 mingwrt-srcdist-dir:
963         $(RM) -r dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
964         $(call mkinstalldirs,,dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION))
965
966 mingwrt-srcdist-files: mingwrt-srcdist-common-files
967 mingwrt-srcdist-files: mingwrt-srcdist-testsuite-files
968 mingwrt-srcdist-files: mingwrt-srcdist-package-files
969
970 mingwrt-srcdist-package-files:
971         (cd ${mingwrt_srcdir} && tar chf - --hard-dereference $(notdir $^)) | \
972           (cd dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION) && tar xf -)
973
974 mingwrt-srcdist-package-files: $(wildcard ${mingwrt_srcdir}/*.[chs]) \
975   $(addprefix ${mingwrt_srcdir}/,ChangeLog CONTRIBUTORS DISCLAIMER README) \
976   $(wildcard ${mingwrt_srcdir}/*.def.in) $(wildcard ${mingwrt_srcdir}/config*) \
977   $(addprefix ${mingwrt_srcdir}/,include man mingwex msvcrt-xref profile) \
978   $(addprefix ${mingwrt_srcdir}/,TODO Makefile.in crtdll.def) \
979   $(wildcard $(addprefix ${mingwrt_srcdir}/,*.sx *.txt))
980
981 mingwrt-srcdist-testsuite-files: $(wildcard ${mingwrt_srcdir}/tests/*.at)
982 mingwrt-srcdist-testsuite-files: $(wildcard ${mingwrt_srcdir}/tests/*.in)
983         (cd ${mingwrt_srcdir} && tar chf - $(addprefix tests/,$(notdir $^))) | \
984           (cd dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION) && tar xf -)
985
986 install-html install-pdf: install-%: %dir mingwrt-man$(man3ext)
987         $(MAKE) --no-print-directory install-$*-files
988
989 install-html-files install-pdf-files: install-%-files: \
990   $(addsuffix .%,$(wildcard ${man3dir}/*.$(man3ext)))
991
992 %.$(man3ext).html: %.$(man3ext)
993         man2html $< | sed -e '1,/^<!DOCTYPE/{/^<!/p;d' -e '}' > ${htmldir}/$(notdir $@)
994         chmod 644 ${htmldir}/$(notdir $@)
995
996 %.$(man3ext).pdf: %.$(man3ext)
997         man -t $(dir $<)$< | ps2pdf - > ${pdfdir}/$(notdir $@)
998         chmod 644 ${pdfdir}/$(notdir $@)
999
1000 html-docdist pdf-docdist: %-docdist:
1001         $(RM) -r tmp
1002         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-$*
1003         $(RM) -r tmp/share/man
1004         cd tmp && tar chf - --hard-dereference share | \
1005           xz -c > ../dist/mingwrt-doc-$(PACKAGE_RELEASE_TAG)-$*.tar.xz
1006         $(RM) -r tmp
1007
1008
1009 # Clean-up Rules
1010 # --------------
1011 #
1012 clean-local: mostlyclean-local
1013         $(RM) msvcr*.def moldname*.def mingw*.def lib*.a *.dll
1014
1015 mostlyclean-local:
1016         $(RM) *.d *.$(OBJEXT) Makefile.stub *.libimpl
1017
1018 distclean-local: clean-local
1019         $(RM) config.log config.status libm_dummy.c _mingw.h w32api.h
1020
1021 maintainer-clean-warning:
1022         $(warning $(MAKE) $(@:%-warning=%))
1023         $(warning This command should be used by package maintainers only;)
1024         $(warning it deletes files which may require special tools to rebuild.)
1025
1026 maintainer-clean-local: maintainer-clean-warning distclean-local
1027         $(RM) -r ${mingwrt_srcdir}/autom4te.cache
1028
1029 clean mostlyclean distclean maintainer-clean: %clean: %clean-local
1030
1031 # $RCSfile$: end of file