OSDN Git Service

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