OSDN Git Service

Include, and make <sys/bsdtypes.h> test suite safe (augmented).
[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-2017, 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
274 # This is kludgey, but dlltool lacks the selectivity to do the job
275 # well; (its --ext-prefix-alias option, which is what we would like
276 # to use, is rather like a chainsaw in the hands of a neurosurgeon,
277 # when he should have a scalpel).  We cannot selectively apply the
278 # prefix, to just the symbols of interest, so we end up by creating
279 # an initial copy of the import library, WITH the prefix applied to
280 # to EVERYTHING, (noting that, when we create this initial copy, we
281 # MUST specify the "--no-delete" option TWICE, to preserve temporary
282 # object files within the build tree); we then set this initial copy
283 # aside, and create a further copy WITHOUT the extra symbols, while
284 # duplicating the temporary object file name prefix retrieved from
285 # the initial copy, using this $(NM) lookup filter...
286 #
287 dlltool_temp_prefix = $(NM) $(1) | sed -n -e '/t.o:$$/{s///p;q' -e '}'
288
289 # ...after which, we apply the following $(NM) lookup filter to the
290 # initial copy of the import library file, to identify the specific
291 # temporary object files, defining the entry points to remap...
292 #
293 msvcrt_repl = $(call nmlookup,$1,$(msvcrt_repl_prefix)_,$(msvcrt_repl_funcs))
294 nmlookup = $(NM) $(1) | sed -n \
295   -e '/:$$/h;/^[0-7][0-7]*  *T  */{s///;H;g;s/\n//' \
296   $(foreach repl,$(3),-e 's/:_$(2)$(repl)$$//p') \
297   -e '}'
298
299 # ...and we add just that selection to the final copy of the import
300 # library, before explicitly deleting ALL temporary object files, and
301 # the (extended) initial copy of the import library.
302 #
303 vpath %.def ${mingwrt_srcdir}
304 $(foreach name,$(all_msvcrt) crtdll,lib$(name).a): lib%.a: %.def
305         $(DLLTOOL) --as $(AS) -k --input-def $< --no-delete --no-delete \
306           --dllname `$(call msvcrt_dllname_script,$*)` --output-lib $@  \
307           --ext-prefix-alias $(msvcrt_repl_prefix) && mv $@ lib$*-repl.a
308         $(DLLTOOL) --as $(AS) -k --input-def $< --output-lib $@ \
309           --temp-prefix `$(call dlltool_temp_prefix,lib$*-repl.a)` \
310           --dllname `$(DLLTOOL) --identify lib$*-repl.a`
311         $(AR) $(ARFLAGS) $@ `$(call msvcrt_repl,lib$*-repl.a)` \
312           $(filter %.$(OBJEXT),$^)
313         $(RM) lib$*-repl.a `$(call dlltool_temp_prefix,$@)`*
314
315 # Older versions of Microsoft's runtime libraries used a naming
316 # convention which is more consistent with POSIX, (and with other
317 # free software usage), than they currently employ; we support
318 # this earlier convention by mapping the old names to equivalent
319 # entry points in the current libraries, using libcoldname.a to
320 # map CRTDLL.DLL entries, and variants of libmoldname.a for each
321 # variant of MSVCRT.DLL
322 #
323 std_moldname := moldname $(addprefix moldname,$(msvcrt_versions))
324 all_moldname := $(std_moldname) $(addsuffix d,$(std_moldname))
325
326 all-mingwrt-libs: all-libmoldname
327 all-libmoldname install-mingwrt-libs: $(foreach name,$(all_moldname),lib$(name).a)
328 $(foreach name,coldname $(all_moldname),lib$(name).a): lib%.a: %.def
329         $(DLLTOOL) --as $(AS) -k -U --input-def $< --output-lib $@ \
330           --dllname `$(call msvcrt_dllname_script,$*)`
331         $(AR) $(ARFLAGS) $@ $(call extra_objects_filter,$^)
332
333 # The oldname libraries are also a convenient place to provide a
334 # few additional functions, with no direct implementation in the
335 # Microsoft DLLs, but which nevertheless are easily emulated.
336 #
337 $(foreach name,coldname $(all_moldname),lib$(name).a): $(addsuffix .$(OBJEXT), \
338   isascii iscsym iscsymf toascii)
339
340 # Selected versions of the oldname libraries also provide a
341 # convenient vehicle for delivery of stubs, emulating functions
342 # which appear in later MSVCRT versions, and which we also wish
343 # to support in conjunction with earlier versions.
344 #
345 $(foreach name,moldname $(addprefix moldname,70 71),lib$(name).a) \
346 $(foreach name,moldname $(addprefix moldname,70 71),lib$(name)d.a): \
347   strnlen.jmpstub.$(OBJEXT) wcsnlen.jmpstub.$(OBJEXT)
348
349 coldname.def: %.def: ${mingwrt_srcdir}/moldname.def.in
350         $(CC) -C -E -P -D__FILENAME__=$@ -D__CRTDLL__ -xc-header $< > $@
351
352 $(addsuffix .def,$(all_moldname)): %.def: ${mingwrt_srcdir}/moldname.def.in
353         $(CC) -C -E -P -D__FILENAME__=$@ -xc-header $< > $@
354
355 all-mingwrt-libs install-mingwrt-libs: libmingw32.a libmingwex.a
356 libmingw32.a: $(addsuffix .$(OBJEXT), CRTinit CRTglob setargv \
357   CRTfmode cpu_features CRT_fp10 txtmode main dllmain gccmain crtst \
358   tlsmcrt tlsmthread tlssup tlsthrd pseudo-reloc pseudo-reloc-list)
359
360 libmingw32.a libmingwex.a libm.a libmingwthrd.a libgmon.a:
361         $(AR) $(ARFLAGS) $@ $?
362
363 # Complex math objects, to be included in libmingwex.a
364 # (FIXME: consider whether these might be more suitably
365 # delivered in libm.a; ISO-C99 says they belong in the
366 # math library, which by POSIX convention, is libm.a)
367 #
368 vpath %.c ${mingwrt_srcdir}/mingwex
369 vpath %.c ${mingwrt_srcdir}/mingwex/complex
370 libmingwex.a: $(addsuffix .$(OBJEXT), cabs cabsf cabsl cacos cacosf \
371   cacosh cacoshf cacoshl cacosl casin casinf casinh casinhf casinhl casinl \
372   catan catanf catanh catanhf catanhl catanl ccos ccosf ccosh ccoshf ccoshl \
373   ccosl cexp cexpf cexpl clog clogf clogl cpow cpowf cpowl cproj cprojf \
374   cprojl csin csinf csinh csinhf csinhl csinl csqrt csqrtf csqrtl \
375   ctan ctanf ctanh ctanhf ctanhl ctanl)
376
377 libmingwex.a: $(addsuffix .$(OBJEXT), isblank iswblank)
378
379 # Floating point environment control, in libmingwex.a
380 # (FIXME: once again, maybe better delivered in libm.a)
381 #
382 libmingwex.a: $(addsuffix .$(OBJEXT), fegetenv fesetenv feupdateenv \
383   feclearexcept feraiseexcept fetestexcept feholdexcept fegetexceptflag \
384   fesetexceptflag fegetround fesetround)
385
386 # David Gay's "gdtoa" API, provided in libmingwex.a, and used
387 # by MinGW's ISO-C conforming printf() routines for formatting
388 # floating point output.
389 #
390 vpath %.c ${mingwrt_srcdir}/mingwex/gdtoa
391 libmingwex.a: $(addsuffix .$(OBJEXT), g__fmt gethex strtopx g_dfmt gdtoa \
392   gmisc smisc sum g_ffmt hd_init strtodg ulp dmisc g_xfmt hexnan strtodnrp \
393   dtoa misc strtof)
394
395 # "inttypes" conversion routines, provided in libmingwex.a
396 #
397 libmingwex.a: $(addsuffix .$(OBJEXT), \
398   imaxdiv strtoimax strtoumax wcstoimax wcstoumax)
399
400 # Additional math functions, augmenting Microsoft's paltry
401 # selection, also delivered in libmingwex.a, (FIXME: and yet
402 # again, perhaps libm.a would be a better fit)
403 #
404 vpath %.c ${mingwrt_srcdir}/mingwex/math
405 vpath %.s ${mingwrt_srcdir}/mingwex/math
406 libmingwex.a: $(addsuffix .$(OBJEXT), cosf cosl acosf acosl sinf sinl asinf \
407   asinl tanf tanl atanf atanl atan2f atan2l coshf coshl acosh acoshf acoshl \
408   sinhf sinhl asinh asinhf asinhl tanhf tanhl atanh atanhf atanhl cbrt cbrtf \
409   cbrtl ceilf ceill copysign copysignf copysignl erfl s_erf sf_erf expf expl \
410   exp2 exp2f exp2l expm1 expm1f expm1l fabs fabsf fabsl fdim fdimf fdiml \
411   floorf floorl fma fmaf fmal fmax fmaxf fmaxl fmin fminf fminl fmodf fmodl \
412   fp_consts fp_constsf fp_constsl fpclassify fpclassifyf fpclassifyl frexpf \
413   frexpl fucom hypotf hypotl ilogb ilogbf ilogbl isnan isnanf isnanl ldexpf \
414   ldexpl lgamma lgammaf lgammal llrint llrintf llrintl log10f log10l log1p \
415   log1pf log1pl log2 log2f log2l logb logbf logbl logf logl lrint lrintf \
416   lrintl llround llroundf llroundl lround lroundf lroundl modff modfl \
417   nearbyint nearbyintf nearbyintl nextafterf nextafterl nexttoward nexttowardf \
418   powf powl powi powif powil remainder remainderf remainderl remquo remquof \
419   remquol rint rintf rintl round roundf roundl scalbn scalbnf scalbnl signbit \
420   signbitf signbitl sqrtf sqrtl tgamma tgammaf tgammal trunc truncf truncl \
421   x87cvt x87cvtf x87log x87log1p x87pow)
422
423 # Replacement I/O functions in libmingwex.a, providing better POSIX
424 # compatibility than their Microsoft equivalents.
425 #
426 vpath %.c ${mingwrt_srcdir}/mingwex/stdio
427 libmingwex.a: $(addsuffix .$(OBJEXT), btowc fprintf fseeko64 ofmtctl pformat \
428   printf snprintf sprintf vfprintf vfscanf vfwscanf vprintf vscanf vsnprintf \
429   vsprintf vsscanf vswscanf vwscanf)
430
431 # pformat.$(OBJEXT) needs an explicit build rule, since we need to
432 # specify an additional header file path.
433 #
434 PFORMAT_CFLAGS = -I ${mingwrt_srcdir}/mingwex/gdtoa
435 pformat.$(OBJEXT): %.$(OBJEXT): %.c
436         $(CC) -c $(ALL_CFLAGS) $(PFORMAT_CFLAGS) $< -o $@
437
438 # To support Microsoft's DLL version specific exponent digits control,
439 # and "%n" format availability control APIs, in a DLL version agnostic
440 # manner, we also provide the following set of wrapper functions:
441 #
442 libmingwex.a: $(addsuffix fmt.$(OBJEXT),varo crto geto seto crtn getn setn)
443 $(addsuffix fmt.$(OBJEXT),varo crto geto seto crtn getn setn): %.$(OBJEXT): ofmt.c
444         $(CC) -c $(ALL_CFLAGS) -D__$*__ -fno-align-functions -o $@ $<
445
446 # Some additional miscellaneous functions, in libmingwex.a
447 #
448 libmingwex.a: $(addsuffix .$(OBJEXT), mingw-aligned-malloc mingw-fseek)
449 libmingwex.a: $(addsuffix .$(OBJEXT), glob getopt basename dirname nsleep)
450 libmingwex.a: $(addsuffix .$(OBJEXT), mkstemp mkdtemp cryptnam setenv)
451
452 libmingwex.a: $(addsuffix .$(OBJEXT), tdelete tfind tsearch twalk)
453 libmingwex.a: $(addsuffix .$(OBJEXT), dirent wdirent dlfcn strerror_r)
454 libmingwex.a: $(addsuffix .$(OBJEXT), getdelim gettimeofday)
455
456 vpath %.s ${mingwrt_srcdir}/mingwex
457 vpath %.sx ${mingwrt_srcdir}/mingwex
458 libmingwex.a: $(addsuffix .$(OBJEXT), fwide mbrtowc mbsinit strnlen wcrtomb \
459   wcsnlen wcstof wcstold wctob wctrans wctype wmemchr wmemcmp wmemcpy wmemmove \
460   wmemset)
461
462 # The wcsnlen() function, enumerated above, is an adaptation of strnlen();
463 # we need a specific rule to compile it, from shared source.
464 #
465 wcsnlen.$(OBJEXT): strnlen.sx
466         $(COMPILE.sx) -D_UNICODE $^ -o $@
467
468 # For the math sources, we support the convention that a single
469 # quux_generic.c source file will produce three objects: quux.o,
470 # quuxf.o, and quuxl.o; since a change in the common source file
471 # will require all three objects to be recompiled, we may handle
472 # this with a single, multiple target, pattern rule.
473 #
474 $(addsuffix .$(OBJEXT), % %f %l): %_generic.c
475         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $*.$(OBJEXT) $<
476         $(CC) -c -D FUNCTION=$*f $(CPPFLAGS) $(ALL_CFLAGS) -o $*f.$(OBJEXT) $<
477         $(CC) -c -D FUNCTION=$*l $(CPPFLAGS) $(ALL_CFLAGS) -o $*l.$(OBJEXT) $<
478
479 # The llround.o, llroundf.o, and llroundl.o variants are a special
480 # case of the preceding rule; (the source is lround_generic.c rather
481 # than llround_generic.c).  We can handle this using the following
482 # static pattern rule, (compiling each object individually).
483 #
484 $(addsuffix .$(OBJEXT), llround llroundf llroundl): %.$(OBJEXT): lround_generic.c
485         $(CC) -c -D FUNCTION=$* $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
486
487 # Similarly, we may need to compile quux.o, quuxf.o, and quuxl.o
488 # variants from a common quux_generic.sx assembly language file.
489 #
490 vpath %.sx ${mingwrt_srcdir}/mingwex/math
491 $(addsuffix .$(OBJEXT), % %f %l): %_generic.sx
492         $(CC) -c -D_$*_source $(ALL_CPPFLAGS) $(ASFLAGS) -o $*.$(OBJEXT) $<
493         $(CC) -c -D_$*f_source $(ALL_CPPFLAGS) $(ASFLAGS) -o $*f.$(OBJEXT) $<
494         $(CC) -c -D_$*l_source $(ALL_CPPFLAGS) $(ASFLAGS) -o $*l.$(OBJEXT) $<
495
496 # Several generically implemented functions also require separate
497 # assembly of their generic back-end support routines.
498 #
499 x87%.$(OBJEXT): %_generic.sx
500         $(CC) -c $(ALL_CPPFLAGS) $(ASFLAGS) -o $@ $<
501
502 # Historically, MinGW.org's libm.a has been a dummy, delivering
503 # nothing of value; FIXME: IMO, this sucks; it should deliver the
504 # non-MSVCRT.DLL math functions, as noted above.
505 #
506 all-mingwrt-libs install-mingwrt-libs: libm.a
507 libm.a: libm_dummy.$(OBJEXT)
508 libm_dummy.c: Makefile
509         echo "static int __mingw_libm_dummy;" > $@
510
511 # The mingwrt headers define a number of functions which are normally
512 # expected to be compiled as inline code.  Each such function must also
513 # be provided with an externally visible entry point; we provide such
514 # entry points as stubs in libmingwex.a, via the following rules:
515 #
516 sinclude Makefile.stub
517 libstub_refnames = grep -lr '__$1.*FUNCTION *=' ${mingwrt_srcdir}
518 jmpstub_prerequisites := $(shell $(call libstub_refnames,JMPSTUB)/include)
519 libimpl_prerequisites := $(shell $(call libstub_refnames,LIBIMPL)/include)
520 Makefile.stub: Makefile $(jmpstub_prerequisites) $(libimpl_prerequisites)
521         echo "# $@: automatically generated file -- do not edit!" > $@
522         $(call jmpstub_awk_script,$(jmpstub_prerequisites)) >> $@
523         $(call libimpl_awk_script,$(libimpl_prerequisites)) >> $@
524         echo "# $@: end of file" >> $@
525
526 # Stubs are categorized into either of JMPSTUB or LIBIMPL classes;
527 # the rules for building the JMPSTUP inplementations are written to
528 # Makefile.stub, by processing each of their defining header files
529 # through the following awk script...
530 #
531 jmpstub_awk_script = test -z "$1" || awk '\
532   BEGIN { \
533     symbol = "([A-Z_a-z][A-Z_a-z0-9]*)"; \
534     fmt = "\nlib%s.a: %s\n%s: jmpstub.sx\n\t$$(COMPILE.sx) %s -o $$@ $$^\n"; \
535   } \
536   /__JMPSTUB(__)? *[(].*FUNCTION/ { \
537     FUNCTION = gensub( ".*[ ,(:]FUNCTION *= *"symbol".*", "\\1", 1 ); \
538     LIB = match( $$0, ".*[ ,(:]LIB *= *"symbol, altlib ) ? altlib[1] : "mingwex"; \
539     OBJNAME = gensub( "_*(.*)_*", "\\1", 1, FUNCTION )".jmpstub.$$(OBJEXT)"; \
540     OBJNAME_CFLAGS = "-D FUNCTION="FUNCTION; \
541     if( match( $$0, ".*[ ,(:]DLLENTRY *= *"symbol, alias ) ) \
542       OBJNAME_CFLAGS = OBJNAME_CFLAGS" -D DLLENTRY="alias[1]; \
543     else if( match( $$0, ".*[ ,(:]REMAPPED *= *"symbol, alias ) ) \
544       OBJNAME_CFLAGS = OBJNAME_CFLAGS" -D REMAPPED="alias[1]; \
545     printf fmt, LIB, OBJNAME, OBJNAME, OBJNAME_CFLAGS; \
546   } \
547   END { \
548     printf "\n"; \
549   }' $1
550
551 # ...while this establishes the dependencies which apply for each
552 # of those in the LIBIMPL class.
553 #
554 libimpl_awk_script = test -z "$1" || awk '\
555   BEGIN { \
556     symbol = "([A-Z_a-z][A-Z_a-z0-9]*)"; \
557     fmt = "\nlib%s.a: %s\n%s.libimpl: %s\n"; \
558   } \
559   /__LIBIMPL(__)? *[(].*FUNCTION/ { \
560     FUNCTION = gensub( ".*[ ,(:]FUNCTION *= *"symbol".*", "\\1", 1 ); \
561     LIB = match( $$0, ".*[ ,(:]LIB *= *"symbol, altlib ) ? altlib[1] : "mingwex"; \
562     OBJNAME = gensub( "_*(.*)_*", "\\1", 1, FUNCTION )".libimpl.$$(OBJEXT)"; \
563     printf fmt, LIB, OBJNAME, FUNCTION, FILENAME; \
564   } \
565   END { \
566     printf "\n"; \
567   }' $1
568
569 # In contrast to JMPSTUB implementations, which are best handled
570 # by individual compilation rules in Makefile.stub, generic rules
571 # are sufficient for all LIBIMPL implementations; in each case, we
572 # filter the static attribute from each defined implementation, in
573 # its defining header file, to create an intermediate C source for
574 # each individual function; (note that we also remove any pragma
575 # which identifies the originating file as a system header).
576 #
577 libimpl_sed_script = sed \
578   -e '/pragma .* system_header/d' \
579   -e '/__CRT_INLINE  *__LIBIMPL.*FUNCTION *= *$1[ ,)].*)/d' \
580   -e 's/__LIBIMPL.*ALIAS *= *$1[ ,)].*)/__attribute__((__alias__("$1")))/' \
581   -e '/__CRT_ALIAS  *__LIBIMPL.*FUNCTION *= *$1[ ,)].*)/d'
582
583 LIBIMPL_CFLAGS = $(CFLAGS) $(INCLUDES) $(LIBIMPL_EXTRA_CFLAGS)
584 LIBIMPL_EXTRA_CFLAGS = -fno-align-functions -Wno-deprecated-declarations
585
586 # LIBIMPL dependencies are tracked using zero sized name.libimpl
587 # files; the intermediate C files are generated as a side effect
588 # of resolving these dependencies...
589 #
590 %.libimpl:
591         $(call libimpl_sed_script,$*) $< > $@.c
592         > $@
593
594 # ...and ultimately discarded, after the requisite object file
595 # has been compiled; (note that this creates a vulnerability due
596 # to possible loss of the object file, while the tracking file is
597 # still in place; to circumvent this, we must be able to force a
598 # remake of the tracking file, so also regenerating the .c file,
599 # before it is compiled).
600 #
601 libimpl_remake = { $(RM) $1; $(MAKE) --no-print-directory $1; }
602 %.libimpl.$(OBJEXT): %.libimpl
603         test -f $<.c || $(call libimpl_remake,$<)
604         $(CC) -c $(CPPFLAGS) $(LIBIMPL_CFLAGS) -o $@ $<.c
605         $(RM) $<.c
606
607 # Thread support libraries.
608 #
609 all-mingwrt-libs install-mingwrt-libs: libmingwthrd.a libmingwthrd_old.a
610 libmingwthrd.a libmingwthrd_old.a: crtmt.$(OBJEXT)
611 mingwthrd_old.def mingwm10.dll: $(addsuffix .$(OBJEXT), mthr mthr_init)
612 mingwthrd_old.def:
613         $(DLLTOOL) --as $(AS) --output-def $@ $^
614
615 libmingwthrd_old.a: lib%.a: %.def
616         $(DLLTOOL) --as $(AS) --input-def $< --dllname mingwm10.dll --output-lib $@
617         $(AR) $(ARFLAGS) $@ $(call extra_objects_filter,$^)
618
619 all-mingwrt-dll install-mingwrt-dll-files: mingwm10.dll
620 mingwm10.dll: mingwthrd_old.def
621         $(CC) -shared -o $@ -Wl,--image-base,0x6FBC0000 \
622           -Wl,--entry,_DllMainCRTStartup@12 $^
623
624 # Code profiling support, using the GNU profiling library; (note
625 # that applications using this library MUST be licensed to comply
626 # with the GNU General Public License).
627 #
628 all-mingwrt-libs install-mingwrt-libs: libgmon.a
629 libgmon.a: $(addsuffix .$(OBJEXT), gmon mcount profil)
630
631
632 # Optional DLL Generation Rules
633 # -----------------------------
634 #
635 # The following rules are provided to accommodate optional delivery
636 # of certain of the static libraries, generated as components of this
637 # package, in the alternative form of DLLs, each with an accompanying
638 # import library.  Each such DLL should be versioned, ideally with an
639 # explicitly specified version number, but we provide this fall back
640 # as a catch-all default for any which is not so specified; (all such
641 # version specifications should be in the "current:revision:age" form,
642 # conforming to the GNU-libtool convention).
643 #
644 DLLVERSION = "0:0:0"
645
646 # Generally, we should prefer to have explicit version specifications,
647 # relating individually to each DLL; these are specified in VERSION.m4,
648 # and propagated here via configure time substitution.
649 #
650 @MAP_LIBMINGWEX_A_DLLVERSION@
651
652 # For convenience, we implement the DLL build rule in the form of a
653 # generic pattern rule, invoked in the form of a request to build any
654 # version-agnostic import library; the versioned DLL is then built as
655 # a side effect of building the import library.
656 #
657 # Note that, in addition to the obvious dependency on the originating
658 # static library, we also make this depend on configure; this ensures
659 # that DLL version changes, specified in VERSION.m4, are propagated.
660 #
661 # Further note that we use an alternatively named reference link to
662 # the originating static library, as code source for the DLL, rather
663 # than the original name; this is to work around a limitation of the
664 # handling of --whole-archive, by GNU-ld, which suppresses creation
665 # of an exports table, in the event that the same static library is
666 # named among GCC's implicit default libraries, after reverting to
667 # --no-whole-archive operation.
668 #
669 %.dll.a: %.a configure
670         $(LN_S) -f $< tmp$<
671         $(CC) $(call a2dll,tmp$<,$(call dllname,$*)) -L. -Wl,--out-implib=$@
672         $(RM) tmp$<
673
674 dllname = $1-$(dllsuffix).dll $(LIBGCC_LINK_OPTION)
675 a2dll = -shared -o $2 -Wl,--whole-archive $1 -Wl,--no-whole-archive
676 dllsuffix = `echo $(DLLVERSION) | awk -F: '{printf "%d",$$1-$$3}'`
677
678 all-optional-dlls: all-mingwrt-optional-dlls
679 all-mingwrt-optional-dlls: libmingwex.dll.a
680
681 # In most optional DLL build cases, we should avoid creating any
682 # unnecessary dependency on (known to be broken) -shared-libgcc
683 #
684 libmingwex.dll.a: LIBGCC_LINK_OPTION = -static-libgcc
685
686
687 # Installation Rules
688 # ------------------
689 #
690 # Users may expect to be able to specify DESTDIR, to stage the
691 # following stock installation directories outside of the regular
692 # "as configured" installation tree; unfortunately, this expectation
693 # MUST fail, when the stock path is in MS-Windows absolute format, so
694 # we provide an exception mechanism to forbid such usage, and we
695 # proceed to create the directories only when the exception is
696 # NOT triggered.
697 #
698 .PHONY: DESTDIR-UNSUPPORTED
699 bindir docdir includedir libdir mandir htmldir pdfdir:
700         @test -z "$(strip ${DESTDIR})" || case $($@) in ${DESTDIR}?:*) \
701           $(MAKE) --no-print-directory reject=$@ DESTDIR-UNSUPPORTED;; \
702           esac
703         $(call mkinstalldirs,,$($@))
704
705 # Note: we MUST use a recursive make invocation here, as the
706 # "error" function within the accompanying diagnostics would be
707 # triggered, irrespective of its placement in an unexecuted
708 # branch of the above exception trapping shell code.
709 #
710 DESTDIR-UNSUPPORTED:
711         $(call MSG_DESTDIR_FORBIDDEN,$(reject),$($(reject):${DESTDIR}%=%))
712
713 # The following macros, which rely heavily on GNU make's "call"
714 # function, define the diagnostics to be emitted, when the DESTDIR
715 # exception is triggered.
716 #
717 QUOTE = `$1'#'`
718 MSG_DESTDIR_FORBIDDEN = \
719   $(warning *** $(call MSG_DESTDIR_PATH_CONFLICT,$1,Win32,$2);) \
720   $(error try $(call QUOTE,$(call MSG_DESTDIR_ALTERNATIVE,$1,$2)) instead)
721 MSG_DESTDIR_BAD_PATH = DESTDIR is not supported when $1 contains $2 path $3
722 MSG_DESTDIR_PATH_CONFLICT = $(call MSG_DESTDIR_BAD_PATH,$1,$2,$(call QUOTE,$3))
723 MSG_DESTDIR_ALTERNATIVE = make install $1="$(call MSG_DESTDIR_TRANSFORM,$2)"
724 MSG_DESTDIR_TRANSFORM = ${DESTDIR}$(shell echo $1 | sed 's/^.://')
725
726 # Install everything.
727 #
728 install: inst@DEFAULT_MAKECMDGOALS@
729 install-stage-1-only: install-headers install-libdir-objects install-libs
730 install-stage-1-and-2: install-stage-1-only install-bin
731 install-gcc: install-stage-1-only
732
733 install-strip: install-strip-mingwrt
734 install-strip-%:
735         $(MAKE) --no-print-directory \
736           STRIP_DATA='cd ${libdir}; $(STRIP) --strip-unneeded $$1' \
737           STRIP_DLL='cd ${bindir}; $(STRIP) $$1' install-$*
738
739 # Install licence files.
740 #
741 install-license: install-mingwrt-license
742 install-licence install-mingwrt-licence: %-licence: %-license
743
744 vpath DISCLAIMER ${mingwrt_srcdir}
745 vpath COPYING ${mingwrt_srcdir}/profile
746 vpath CYGWIN_LICENSE ${mingwrt_srcdir}/profile
747 mingwrt-license-files: COPYING CYGWIN_LICENSE DISCLAIMER
748
749 # FIXME: The following rule is generalized, such that it may accommodate
750 # both mingwrt and w32api, (and other packages); thus, it should ideally
751 # be relocated into a common (shared) Makefile fragment.
752 #
753 install-mingwrt-license install-w32api-license: install-%: docdir %-files
754 %-license-files:
755         $(call mkinstalldirs,,${docdir}/$*/$(PACKAGE_VERSION))
756         $(call INSTALL_DATA,$^,${docdir}/$*/$(PACKAGE_VERSION))
757
758 # Install headers associated with the MinGW runtime libraries.
759 #
760 includedirs: mingwrt-includedirs
761 install-headers install-mingwrt: install-mingwrt-headers
762
763 mingwrt-includedirs: includedir $(eval mingwrt_include_subdirs=sys parts)
764         $(call mkinstalldirs,${includedir}/,$(mingwrt_include_subdirs))
765
766 SUB_HEADERS_PRESENT = echo $1/include/$2/*.h | grep -v '[*]' > /dev/null
767 INSTALL_SUB_HEADERS = $(call INSTALL_DATA,$1/include/$2/*.h,${includedir}/$2)
768
769 install-mingwrt-headers: _mingw.h mingwrt-includedirs
770         $(call INSTALL_DATA,_mingw.h,${includedir})
771         $(call INSTALL_DATA,${mingwrt_srcdir}/include/*.h,${includedir})
772         for dir in $(mingwrt_include_subdirs); do \
773           if $(call SUB_HEADERS_PRESENT,${mingwrt_srcdir},$$dir); then \
774             $(call INSTALL_SUB_HEADERS,${mingwrt_srcdir},$$dir); \
775             fi; \
776           done
777         $(call INSTALL_DATA,${mingwrt_srcdir}/profile/*.h,${includedir})
778
779 # Install libraries, and supporting free standing object files.
780 #
781 install-libs install-mingwrt: install-mingwrt-libdir-libs
782 install-libdir-objects install-mingwrt: install-mingwrt-libdir-objects
783
784 install-mingwrt-libdir-libs: libdir $(call active_goals,install,mingwrt-libs)
785 install-mingwrt-libdir-objects: libdir $(call active_goals,install,crt-objects)
786
787 install-crt-objects install-deprecated-crt-objects \
788 install-mingwrt-libs install-deprecated-mingwrt-libs:
789         $(call INSTALL_DATA,$^,${libdir})
790         $(if $(STRIP_DATA),$(call STRIP_DATA,$^))
791
792
793 # Install DLLs.
794 #
795 install-mingwrt: install-mingwrt-dll
796 install-bin install-dll: install-mingwrt-dll
797 install-mingwrt-bin install-w32api-bin: install-%-bin: install-%-dll
798 install-mingwrt-dll install-w32api-dll: install-%-dll: bindir install-%-dll-files
799 install-%-dll-files:
800         $(call INSTALL_DATA,$^,${bindir})
801         $(if $(STRIP_DLL),$(call STRIP_DLL,$^))
802
803 $(call optional_dll_version,libmingwex,@MAP_LIBMINGWEX_A_DLLVERSION@)
804 optional_dll_version = $(shell echo '$2' | sed s,^[^:]*,install-$1-optional-dll,)
805
806 install-optional-dlls: install-mingwrt-optional-dlls
807 install-mingwrt-optional-dlls: install-libmingwex-optional-dll
808 install-%-optional-dll: %.dll.a bindir libdir
809         $(call INSTALL_DATA,$<,${libdir})
810         $(call INSTALL_DATA,$(call dllname,$*),${bindir})
811         $(if $(STRIP_DLL),$(call STRIP_DLL,$(call dllname,$*)))
812         $(if $(STRIP_DATA),$(call STRIP_DATA,$<))
813
814
815 # Install manpages.
816 #
817 vpath %.man ${mingwrt_srcdir}/man
818 install-man install-manpages: install-mingwrt-manpages
819 mingwrt-man$(man3ext): $(addsuffix .$(man3ext),basename dirname getline getdelim)
820 install-mingwrt-manpages: mandir mingwrt-man3
821
822 mingwrt-man%:
823         $(call mkinstalldirs,,${man$*dir})
824         $(call INSTALL_DATA,$^,${man$*dir})
825         $(RM) $^
826
827 %: %.man
828         $(call format_manpage,$(basename $*),$(suffix $*),$<) $< > $@
829
830 format_manpage = sed \
831   -e "s/%PAGEREF%/`echo $1 | tr a-z A-Z` $(2:.%=%) `date -r $3 +%d-%b-%Y`/"
832
833 basename.$(man3ext): export reference_manpage = dirname.$(man3ext).man
834 basename.$(man3ext): %: %.mancopy-recursive
835
836 getdelim.$(man3ext): export reference_manpage = getline.$(man3ext).man
837 getdelim.$(man3ext): %: %.mancopy-recursive
838
839 %.mancopy-recursive:
840         $(MAKE) --no-print-directory $*.mancopy
841
842 %.mancopy: $(reference_manpage)
843         $(call format_manpage,$(basename $*),$(suffix $*),$<) $< > $*
844
845
846 # Undo Installation
847 # -----------------
848 #
849 uninstall: uninstall-mingwrt
850 uninstall-bin uninstall-dll uninstall-mingwrt: uninstall-mingwrt-dll
851 uninstall-optional-dlls uninstall-mingwrt: uninstall-mingwrt-optional-dlls
852 uninstall-mingwrt: uninstall-mingwrt-headers uninstall-mingwrt-libdir-libs
853 uninstall-mingwrt: uninstall-mingwrt-libdir-objects
854
855 REMOVE_HEADERS = cd $1 && $(RM) $(notdir $(wildcard $2))
856
857 uninstall-mingwrt-headers:
858         $(call REMOVE_HEADERS,${includedir},${mingwrt_srcdir}/include/*.h)
859         for dir in $(mingwrt_include_subdirs); do \
860           files=`cd ${mingwrt_srcdir}/include/$$dir && echo *.h`; \
861           (cd ${includedir}/$$dir && $(RM) $$files); \
862           done
863         $(call REMOVE_HEADERS,${includedir},${mingwrt_srcdir}/profile/*.h)
864
865 uninstall-mingwrt-dll uninstall-mingwrt-optional-dlls \
866 uninstall-mingwrt-libdir-objects uninstall-mingwrt-libdir-libs: un%:
867         $(MAKE) --no-print-directory mkinstalldirs= \
868           INSTALL_DATA='cd $$2 && $(RM) $$1' $*
869
870
871 # Test Suite
872 # ----------
873 #
874 .PHONY: check-recursive
875 check test tests: check-recursive
876 check-recursive:
877         $(MAKE) -C tests $@
878
879
880 # Distribution
881 # ------------
882 #
883 .PHONY: dist
884 dist: devdist dlldist licdist mandist optdist srcdist
885         $(RM) -r dist/mingwrt dist/w32api
886
887 mingwrt-dist-staged w32api-dist-staged: %-dist-staged:
888         $(RM) -r dist/$*
889         $(MAKE) --no-print-directory prefix=`pwd`/dist/$* install-strip-$*
890
891 devdist: mingwrt-devdist
892 mingwrt_devdist_objects = dist/mingwrt/lib/*.$(OBJEXT)
893 mingwrt-devdist w32api-devdist: %-devdist: %-dist-staged
894         cd dist/$* && tar chf - --hard-dereference include lib | \
895           xz -c > ../$*-$(PACKAGE_RELEASE_TAG)-dev.tar.xz
896
897 dlldist: mingwrt-dlldist
898 mingwrt-dlldist: %-dlldist: %-dist-staged
899         cd dist/$* && tar chf - --hard-dereference bin | \
900           xz -c > ../$*-$(PACKAGE_RELEASE_TAG)-dll.tar.xz
901
902 licdist: mingwrt-licdist
903 mingwrt-licdist w32api-licdist: %-licdist:
904         $(RM) -r tmp
905         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-$*-licence
906         cd tmp && tar chf - --hard-dereference * | \
907           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-lic.tar.xz
908         $(RM) -r tmp
909
910 mandist: mingwrt-mandist
911 mingwrt-mandist: %-mandist:
912         $(RM) -r tmp
913         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-$*-manpages
914         cd tmp && tar chf - --hard-dereference share | \
915           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-man.tar.xz
916         $(RM) -r tmp
917
918 optdist: mingwrt-optdist
919 mingwrt-optdist: mingwrt-libmingwex-optdist
920
921 $(call optional_dll_package,libmingwex,@MAP_LIBMINGWEX_A_DLLVERSION@)
922 optional_dll_package = $(shell echo '$2' | sed s,^[^:]*,mingwrt-$1-optdist)
923
924 mingwrt-%-optdist:
925         $(RM) -r tmp
926         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-strip-$*-optional-dll
927         cd tmp && tar chf - --hard-dereference bin | \
928           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-dll-$(dllsuffix).tar.xz
929         cd tmp && tar chf - --hard-dereference lib | \
930           xz -c > ../dist/$*-$(PACKAGE_RELEASE_TAG)-dev.tar.xz
931         $(RM) -r tmp
932
933 srcdist: mingwrt-srcdist
934 mingwrt-srcdist: mingwrt-srcdist-dir mingwrt-srcdist-files
935         cd dist && tar chf - $(PACKAGE_TARNAME)-$(PACKAGE_VERSION) | \
936           xz -c > $(PACKAGE_TARNAME)-$(PACKAGE_RELEASE_TAG)-src.tar.xz
937         $(RM) -r dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
938
939 mingwrt-srcdist-dir:
940         $(RM) -r dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
941         $(call mkinstalldirs,,dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION))
942
943 mingwrt-srcdist-files: mingwrt-srcdist-common-files
944 mingwrt-srcdist-files: mingwrt-srcdist-testsuite-files
945 mingwrt-srcdist-files: mingwrt-srcdist-package-files
946
947 mingwrt-srcdist-package-files:
948         (cd ${mingwrt_srcdir} && tar chf - --hard-dereference $(notdir $^)) | \
949           (cd dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION) && tar xf -)
950
951 mingwrt-srcdist-package-files: $(wildcard ${mingwrt_srcdir}/*.[chs]) \
952   $(addprefix ${mingwrt_srcdir}/,ChangeLog CONTRIBUTORS DISCLAIMER README) \
953   $(wildcard ${mingwrt_srcdir}/*.def.in) $(wildcard ${mingwrt_srcdir}/config*) \
954   $(addprefix ${mingwrt_srcdir}/,include man mingwex msvcrt-xref profile) \
955   $(addprefix ${mingwrt_srcdir}/,TODO Makefile.in crtdll.def) \
956   $(wildcard ${mingwrt_srcdir}/*.txt)
957
958 mingwrt-srcdist-testsuite-files: $(wildcard ${mingwrt_srcdir}/tests/*.at)
959 mingwrt-srcdist-testsuite-files: $(wildcard ${mingwrt_srcdir}/tests/*.in)
960         (cd ${mingwrt_srcdir} && tar chf - $(addprefix tests/,$(notdir $^))) | \
961           (cd dist/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION) && tar xf -)
962
963 install-html install-pdf: install-%: %dir mingwrt-man$(man3ext)
964         $(MAKE) --no-print-directory install-$*-files
965
966 install-html-files install-pdf-files: install-%-files: \
967   $(addsuffix .%,$(wildcard ${man3dir}/*.$(man3ext)))
968
969 %.$(man3ext).html: %.$(man3ext)
970         man2html $< | sed -e '1,/^<!DOCTYPE/{/^<!/p;d' -e '}' > ${htmldir}/$(notdir $@)
971         chmod 644 ${htmldir}/$(notdir $@)
972
973 %.$(man3ext).pdf: %.$(man3ext)
974         man -t $< | ps2pdf - > ${pdfdir}/$(notdir $@)
975         chmod 644 ${pdfdir}/$(notdir $@)
976
977 html-docdist pdf-docdist: %-docdist:
978         $(RM) -r tmp
979         $(MAKE) --no-print-directory prefix=`pwd`/tmp install-$*
980         $(RM) -r tmp/share/man
981         cd tmp && tar chf - --hard-dereference share | \
982           xz -c > ../dist/mingwrt-doc-$(PACKAGE_RELEASE_TAG)-$*.tar.xz
983         $(RM) -r tmp
984
985
986 # Clean-up Rules
987 # --------------
988 #
989 clean-local: mostlyclean-local
990         $(RM) msvcr*.def moldname*.def mingw*.def lib*.a *.dll
991
992 mostlyclean-local:
993         $(RM) *.d *.$(OBJEXT) Makefile.stub *.libimpl
994
995 distclean-local: clean-local
996         $(RM) config.log config.status libm_dummy.c _mingw.h w32api.h
997
998 maintainer-clean-warning:
999         $(warning $(MAKE) $(@:%-warning=%))
1000         $(warning This command should be used by package maintainers only;)
1001         $(warning it deletes files which may require special tools to rebuild.)
1002
1003 maintainer-clean-local: maintainer-clean-warning distclean-local
1004         $(RM) -r ${mingwrt_srcdir}/autom4te.cache
1005
1006 clean mostlyclean distclean maintainer-clean: %clean: %clean-local
1007
1008 # $RCSfile$: end of file