Commit | Line | Data |
---|---|---|
1e71036e | 1 | # |
b6c85593 | 2 | # Makefile to build perl on Windows using DMAKE. |
1e71036e | 3 | # Supported compilers: |
b6c85593 | 4 | # Microsoft Visual C++ 6.0 or later |
ceb0c681 | 5 | # MinGW with gcc-3.2 or later |
2a46176f | 6 | # Windows SDK 64-bit compiler and tools |
1e71036e JH |
7 | # |
8 | # This is set up to build a perl.exe that runs off a shared library | |
f7cf42bb | 9 | # (perl519.dll). Also makes individual DLLs for the XS extensions. |
1e71036e JH |
10 | # |
11 | ||
12 | ## | |
13 | ## Make sure you read README.win32 *before* you mess with anything here! | |
14 | ## | |
15 | ||
16 | ## | |
17 | ## Build configuration. Edit the values below to suit your needs. | |
18 | ## | |
19 | ||
20 | # | |
21 | # Set these to wherever you want "dmake install" to put your | |
22 | # newly built perl. | |
23 | # | |
24 | INST_DRV *= c: | |
25 | INST_TOP *= $(INST_DRV)\perl | |
26 | ||
27 | # | |
b86e806e JD |
28 | # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler |
29 | # on a 64-bit version of Windows. | |
30 | #WIN64 *= undef | |
31 | ||
32 | # | |
1e71036e JH |
33 | # Comment this out if you DON'T want your perl installation to be versioned. |
34 | # This means that the new installation will overwrite any files from the | |
35 | # old installation at the same INST_TOP location. Leaving it enabled is | |
36 | # the safest route, as perl adds the extra version directory to all the | |
37 | # locations it installs files to. If you disable it, an alternative | |
38 | # versioned installation can be obtained by setting INST_TOP above to a | |
39 | # path that includes an arbitrary version string. | |
40 | # | |
483394c8 | 41 | #INST_VER *= \5.19.1 |
1e71036e JH |
42 | |
43 | # | |
44 | # Comment this out if you DON'T want your perl installation to have | |
45 | # architecture specific components. This means that architecture- | |
46 | # specific files will be installed along with the architecture-neutral | |
47 | # files. Leaving it enabled is safer and more flexible, in case you | |
48 | # want to build multiple flavors of perl and install them together in | |
49 | # the same location. Commenting it out gives you a simpler | |
50 | # installation that is easier to understand for beginners. | |
51 | # | |
ec25c072 | 52 | #INST_ARCH *= \$(ARCHNAME) |
1e71036e JH |
53 | |
54 | # | |
7ada00a0 SH |
55 | # Uncomment this if you want perl to run |
56 | # $Config{sitelibexp}\sitecustomize.pl | |
57 | # before anything else. This script can then be set up, for example, | |
58 | # to add additional entries to @INC. | |
59 | # | |
60 | #USE_SITECUST *= define | |
61 | ||
62 | # | |
1e71036e | 63 | # uncomment to enable multiple interpreters. This is need for fork() |
2cbbe5a1 | 64 | # emulation and for thread support. |
1e71036e JH |
65 | # |
66 | USE_MULTI *= define | |
67 | ||
68 | # | |
2cbbe5a1 NIS |
69 | # Interpreter cloning/threads; now reasonably complete. |
70 | # This should be enabled to get the fork() emulation. | |
71 | # This needs USE_MULTI above. | |
1e71036e JH |
72 | # |
73 | USE_ITHREADS *= define | |
74 | ||
75 | # | |
76 | # uncomment to enable the implicit "host" layer for all system calls | |
2cbbe5a1 NIS |
77 | # made by perl. This needs USE_MULTI above. |
78 | # This is also needed to get fork(). | |
1e71036e JH |
79 | # |
80 | USE_IMP_SYS *= define | |
81 | ||
82 | # | |
2cbbe5a1 NIS |
83 | # Comment out next assign to disable perl's I/O subsystem and use compiler's |
84 | # stdio for IO - depending on your compiler vendor and run time library you may | |
85 | # then get a number of fails from make test i.e. bugs - complain to them not us ;-). | |
86 | # You will also be unable to take full advantage of perl5.8's support for multiple | |
87 | # encodings and may see lower IO performance. You have been warned. | |
4a9d6100 GS |
88 | USE_PERLIO *= define |
89 | ||
90 | # | |
91 | # Comment this out if you don't want to enable large file support for | |
92 | # some reason. Should normally only be changed to maintain compatibility | |
93 | # with an older release of perl. | |
bdb4cb88 | 94 | USE_LARGE_FILES *= define |
1e71036e JH |
95 | |
96 | # | |
1f64ae15 SH |
97 | # Uncomment this if you're building a 32-bit perl and want 64-bit integers. |
98 | # (If you're building a 64-bit perl then you will have 64-bit integers whether | |
99 | # or not this is uncommented.) | |
100 | #USE_64_BIT_INT *= define | |
101 | ||
102 | # | |
1e71036e JH |
103 | # uncomment exactly one of the following |
104 | # | |
1c847d4b | 105 | # Visual C++ 6.x (aka Visual C++ 98) |
e2736246 | 106 | #CCTYPE *= MSVC60 |
5398666e SH |
107 | # Visual C++ .NET 2002/2003 (aka Visual C++ 7.x) (full version) |
108 | #CCTYPE *= MSVC70 | |
1c847d4b | 109 | # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools) |
da2c7419 | 110 | #CCTYPE *= MSVC70FREE |
2a46176f SH |
111 | # Windows Server 2003 SP1 Platform SDK (April 2005) |
112 | #CCTYPE = SDK2003SP1 | |
1c847d4b SH |
113 | # Visual C++ 2005 (aka Visual C++ 8.x) (full version) |
114 | #CCTYPE *= MSVC80 | |
5398666e SH |
115 | # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version) |
116 | #CCTYPE *= MSVC80FREE | |
4a3cf07b SH |
117 | # Visual C++ 2008 (aka Visual C++ 9.x) (full version) |
118 | #CCTYPE *= MSVC90 | |
5398666e SH |
119 | # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version) |
120 | #CCTYPE *= MSVC90FREE | |
2a46176f SH |
121 | # Visual C++ 2010 (aka Visual C++ 10.x) (full version) |
122 | #CCTYPE = MSVC100 | |
5398666e SH |
123 | # Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version) |
124 | #CCTYPE = MSVC100FREE | |
125 | # Visual C++ 2012 (aka Visual C++ 11.x) (full version) | |
126 | #CCTYPE = MSVC110 | |
127 | # Visual C++ 2012 Express Edition (aka Visual C++ 11.x) (free version) | |
128 | #CCTYPE = MSVC110FREE | |
ceb0c681 | 129 | # MinGW or mingw-w64 with gcc-3.2 or later |
e2736246 | 130 | CCTYPE *= GCC |
1e71036e JH |
131 | |
132 | # | |
1e71036e JH |
133 | # uncomment next line if you want debug version of perl (big,slow) |
134 | # If not enabled, we automatically try to use maximum optimization | |
135 | # with all compilers that are known to have a working optimizer. | |
136 | # | |
2cbbe5a1 | 137 | #CFG *= Debug |
1e71036e JH |
138 | |
139 | # | |
1e71036e JH |
140 | # uncomment to enable linking with setargv.obj under the Visual C |
141 | # compiler. Setting this options enables perl to expand wildcards in | |
142 | # arguments, but it may be harder to use alternate methods like | |
143 | # File::DosGlob that are more powerful. This option is supported only with | |
144 | # Visual C. | |
145 | # | |
146 | #USE_SETARGV *= define | |
147 | ||
148 | # | |
1e71036e JH |
149 | # set this if you wish to use perl's malloc |
150 | # WARNING: Turning this on/off WILL break binary compatibility with extensions | |
151 | # you may have compiled with/without it. Be prepared to recompile all | |
152 | # extensions if you change the default. Currently, this cannot be enabled | |
153 | # if you ask for USE_IMP_SYS above. | |
154 | # | |
c800dd8b | 155 | #PERL_MALLOC *= define |
8bcd5811 VK |
156 | |
157 | # | |
158 | # set this to enable debugging mstats | |
159 | # This must be enabled to use the Devel::Peek::mstat() function. This cannot | |
160 | # be enabled without PERL_MALLOC as well. | |
161 | # | |
646e33b6 | 162 | #DEBUG_MSTATS *= define |
1e71036e JH |
163 | |
164 | # | |
ed2eab3f SH |
165 | # set this to additionally provide a statically linked perl-static.exe. |
166 | # Note that dynamic loading will not work with this perl, so you must | |
a1f2e719 | 167 | # include required modules statically using the STATIC_EXT or ALL_STATIC |
f7cf42bb | 168 | # variables below. A static library perl519s.lib will also be created. |
ed2eab3f SH |
169 | # Ordinary perl.exe is not affected by this option. |
170 | # | |
171 | #BUILD_STATIC *= define | |
172 | ||
173 | # | |
a1f2e719 VK |
174 | # in addition to BUILD_STATIC the option ALL_STATIC makes *every* |
175 | # extension get statically built | |
176 | # This will result in a very large perl executable, but the main purpose | |
177 | # is to have proper linking set so as to be able to create miscellaneous | |
178 | # executables with different built-in extensions | |
179 | # | |
180 | #ALL_STATIC *= define | |
181 | ||
182 | # | |
1e71036e JH |
183 | # set the install locations of the compiler include/libraries |
184 | # Running VCVARS32.BAT is *required* when using Visual C. | |
185 | # Some versions of Visual C don't define MSVCDIR in the environment, | |
186 | # so you may have to set CCHOME explicitly (spaces in the path name should | |
187 | # not be quoted) | |
188 | # | |
378eeda7 | 189 | .IF "$(CCTYPE)" == "GCC" |
c572eed0 NIS |
190 | CCHOME *= C:\MinGW |
191 | .ELSE | |
1e71036e | 192 | CCHOME *= $(MSVCDIR) |
c572eed0 | 193 | .ENDIF |
1e71036e JH |
194 | |
195 | # | |
fa58a56f S |
196 | # uncomment this if you are using x86_64-w64-mingw32 cross-compiler |
197 | # ie if your gcc executable is called 'x86_64-w64-mingw32-gcc' | |
198 | # instead of the usual 'gcc'. | |
199 | # | |
200 | #GCCCROSS *= define | |
201 | ||
202 | # | |
23ae7f17 S |
203 | # Following sets $Config{incpath} and $Config{libpth} |
204 | # | |
205 | ||
206 | .IF "$(GCCCROSS)" == "define" | |
20634986 SH |
207 | CCINCDIR *= $(CCHOME)\x86_64-w64-mingw32\include |
208 | CCLIBDIR *= $(CCHOME)\x86_64-w64-mingw32\lib | |
209 | CCDLLDIR *= $(CCLIBDIR) | |
23ae7f17 S |
210 | .ELSE |
211 | CCINCDIR *= $(CCHOME)\include | |
212 | CCLIBDIR *= $(CCHOME)\lib | |
20634986 | 213 | CCDLLDIR *= $(CCHOME)\bin |
23ae7f17 S |
214 | .ENDIF |
215 | ||
216 | # | |
1e71036e JH |
217 | # Additional compiler flags can be specified here. |
218 | # | |
2e30e1e1 | 219 | BUILDOPT *= $(BUILDOPTEXTRA) |
1e71036e JH |
220 | |
221 | # | |
1e71036e JH |
222 | # This should normally be disabled. Enabling it will disable the File::Glob |
223 | # implementation of CORE::glob. | |
224 | # | |
225 | #BUILDOPT += -DPERL_EXTERNAL_GLOB | |
226 | ||
227 | # | |
270ca148 JD |
228 | # Perl needs to read scripts in text mode so that the DATA filehandle |
229 | # works correctly with seek() and tell(), or around auto-flushes of | |
230 | # all filehandles (e.g. by system(), backticks, fork(), etc). | |
bdb4cb88 | 231 | # |
270ca148 JD |
232 | # The current version on the ByteLoader module on CPAN however only |
233 | # works if scripts are read in binary mode. But before you disable text | |
234 | # mode script reading (and break some DATA filehandle functionality) | |
235 | # please check first if an updated ByteLoader isn't available on CPAN. | |
236 | # | |
237 | BUILDOPT += -DPERL_TEXTMODE_SCRIPTS | |
1e71036e JH |
238 | |
239 | # | |
240 | # specify semicolon-separated list of extra directories that modules will | |
241 | # look for libraries (spaces in path names need not be quoted) | |
242 | # | |
243 | EXTRALIBDIRS *= | |
244 | ||
245 | # | |
246 | # set this to point to cmd.exe (only needed if you use some | |
247 | # alternate shell that doesn't grok cmd.exe style commands) | |
248 | # | |
249 | #SHELL *= g:\winnt\system32\cmd.exe | |
250 | ||
251 | # | |
252 | # set this to your email address (perl will guess a value from | |
253 | # from your loginname and your hostname, which may not be right) | |
254 | # | |
255 | #EMAIL *= | |
256 | ||
257 | ## | |
258 | ## Build configuration ends. | |
259 | ## | |
260 | ||
261 | ##################### CHANGE THESE ONLY IF YOU MUST ##################### | |
262 | ||
1e71036e | 263 | PERL_MALLOC *= undef |
646e33b6 | 264 | DEBUG_MSTATS *= undef |
1e71036e | 265 | |
7ada00a0 | 266 | USE_SITECUST *= undef |
1e71036e | 267 | USE_MULTI *= undef |
1e71036e JH |
268 | USE_ITHREADS *= undef |
269 | USE_IMP_SYS *= undef | |
270 | USE_PERLIO *= undef | |
4a9d6100 | 271 | USE_LARGE_FILES *= undef |
1f64ae15 | 272 | USE_64_BIT_INT *= undef |
1e71036e | 273 | |
646e33b6 | 274 | .IF "$(USE_IMP_SYS)" == "define" |
8bcd5811 | 275 | PERL_MALLOC = undef |
8bcd5811 VK |
276 | .ENDIF |
277 | ||
646e33b6 SH |
278 | .IF "$(PERL_MALLOC)" == "undef" |
279 | DEBUG_MSTATS = undef | |
8bcd5811 VK |
280 | .ENDIF |
281 | ||
282 | .IF "$(DEBUG_MSTATS)" == "define" | |
646e33b6 | 283 | BUILDOPT += -DPERL_DEBUGGING_MSTATS |
c800dd8b SH |
284 | .ENDIF |
285 | ||
66e09d83 | 286 | .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef" |
1e71036e JH |
287 | USE_MULTI != define |
288 | .ENDIF | |
289 | ||
66e09d83 | 290 | .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef" |
1e71036e | 291 | USE_MULTI != define |
1e71036e JH |
292 | .ENDIF |
293 | ||
7ada00a0 SH |
294 | .IF "$(USE_SITECUST)" == "define" |
295 | BUILDOPT += -DUSE_SITECUSTOMIZE | |
296 | .ENDIF | |
297 | ||
3db8f154 | 298 | .IF "$(USE_MULTI)" != "undef" |
1e71036e JH |
299 | BUILDOPT += -DPERL_IMPLICIT_CONTEXT |
300 | .ENDIF | |
301 | ||
302 | .IF "$(USE_IMP_SYS)" != "undef" | |
303 | BUILDOPT += -DPERL_IMPLICIT_SYS | |
304 | .ENDIF | |
305 | ||
256aa5e6 | 306 | .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432 WIN64 CCHOME |
1e71036e JH |
307 | |
308 | PROCESSOR_ARCHITECTURE *= x86 | |
309 | ||
c623ac67 | 310 | .IF "$(WIN64)" == "" |
bf2a35e5 JD |
311 | # When we are running from a 32bit cmd.exe on AMD64 then |
312 | # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432 | |
313 | # is set to AMD64 | |
c623ac67 | 314 | .IF "$(PROCESSOR_ARCHITEW6432)" != "" |
e9948054 | 315 | PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432) |
c623ac67 | 316 | WIN64 = define |
bf2a35e5 | 317 | .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64" |
c623ac67 GS |
318 | WIN64 = define |
319 | .ELSE | |
320 | WIN64 = undef | |
321 | .ENDIF | |
322 | .ENDIF | |
323 | ||
1f64ae15 SH |
324 | .IF "$(WIN64)" == "define" |
325 | USE_64_BIT_INT = define | |
326 | .ENDIF | |
327 | ||
2a46176f SH |
328 | # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because |
329 | # both link against MSVCRT.dll (which is part of Windows itself) and | |
330 | # not against a compiler specific versioned runtime. | |
331 | .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60" | |
332 | CCTYPE = SDK2003SP1 | |
333 | .ENDIF | |
334 | ||
bf2a35e5 JD |
335 | ARCHITECTURE = $(PROCESSOR_ARCHITECTURE) |
336 | .IF "$(ARCHITECTURE)" == "AMD64" | |
337 | ARCHITECTURE = x64 | |
9453ddcd | 338 | .ENDIF |
bf2a35e5 JD |
339 | .IF "$(ARCHITECTURE)" == "IA64" |
340 | ARCHITECTURE = ia64 | |
9453ddcd SH |
341 | .ENDIF |
342 | ||
3db8f154 | 343 | .IF "$(USE_MULTI)" == "define" |
bf2a35e5 | 344 | ARCHNAME = MSWin32-$(ARCHITECTURE)-multi |
1e71036e JH |
345 | .ELSE |
346 | .IF "$(USE_PERLIO)" == "define" | |
bf2a35e5 | 347 | ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio |
1e71036e | 348 | .ELSE |
bf2a35e5 | 349 | ARCHNAME = MSWin32-$(ARCHITECTURE) |
1e71036e | 350 | .ENDIF |
1e71036e JH |
351 | .ENDIF |
352 | ||
43d4c9a3 SH |
353 | .IF "$(USE_PERLIO)" == "define" |
354 | BUILDOPT += -DUSE_PERLIO | |
355 | .ENDIF | |
356 | ||
1e71036e JH |
357 | .IF "$(USE_ITHREADS)" == "define" |
358 | ARCHNAME !:= $(ARCHNAME)-thread | |
359 | .ENDIF | |
360 | ||
1f64ae15 SH |
361 | .IF "$(WIN64)" != "define" |
362 | .IF "$(USE_64_BIT_INT)" == "define" | |
363 | ARCHNAME !:= $(ARCHNAME)-64int | |
364 | .ENDIF | |
365 | .ENDIF | |
366 | ||
1e71036e JH |
367 | ARCHDIR = ..\lib\$(ARCHNAME) |
368 | COREDIR = ..\lib\CORE | |
369 | AUTODIR = ..\lib\auto | |
370 | LIBDIR = ..\lib | |
371 | EXTDIR = ..\ext | |
a193a2db | 372 | DISTDIR = ..\dist |
83d5895a | 373 | CPANDIR = ..\cpan |
1e71036e JH |
374 | PODDIR = ..\pod |
375 | EXTUTILSDIR = $(LIBDIR)\ExtUtils | |
b4a41557 | 376 | HTMLDIR = .\html |
1e71036e JH |
377 | |
378 | # | |
379 | INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin | |
380 | INST_BIN = $(INST_SCRIPT)$(INST_ARCH) | |
381 | INST_LIB = $(INST_TOP)$(INST_VER)\lib | |
382 | INST_ARCHLIB = $(INST_LIB)$(INST_ARCH) | |
383 | INST_COREDIR = $(INST_ARCHLIB)\CORE | |
1e71036e JH |
384 | INST_HTML = $(INST_TOP)$(INST_VER)\html |
385 | ||
386 | # | |
387 | # Programs to compile, build .lib files and link | |
388 | # | |
389 | ||
390 | .USESHELL : | |
391 | ||
378eeda7 | 392 | .IF "$(CCTYPE)" == "GCC" |
1e71036e | 393 | |
fa58a56f S |
394 | .IF "$(GCCCROSS)" == "define" |
395 | ARCHPREFIX = x86_64-w64-mingw32- | |
396 | .ENDIF | |
397 | ||
398 | CC = $(ARCHPREFIX)gcc | |
399 | LINK32 = $(ARCHPREFIX)g++ | |
400 | LIB32 = $(ARCHPREFIX)ar rc | |
401 | IMPLIB = $(ARCHPREFIX)dlltool | |
402 | RSC = $(ARCHPREFIX)windres | |
1e71036e JH |
403 | |
404 | i = .i | |
405 | o = .o | |
406 | a = .a | |
407 | ||
408 | # | |
409 | # Options | |
410 | # | |
411 | ||
412 | INCLUDES = -I.\include -I. -I.. -I$(COREDIR) | |
9cef8306 | 413 | DEFINES = -DWIN32 |
fa58a56f S |
414 | .IF "$(WIN64)" == "define" |
415 | DEFINES += -DWIN64 -DCONSERVATIVE | |
416 | .ENDIF | |
1e71036e JH |
417 | LOCDEFS = -DPERLDLL -DPERL_CORE |
418 | SUBSYS = console | |
419 | CXX_FLAG = -xc++ | |
420 | ||
679b67fe JD |
421 | # Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link |
422 | # correctly if -lmsvcrt is specified explicitly. | |
423 | LIBC = | |
424 | #LIBC = -lmsvcrt | |
1e71036e JH |
425 | |
426 | # same libs as MSVC | |
9cef8306 | 427 | LIBFILES = $(LIBC) \ |
1e71036e JH |
428 | -lmoldname -lkernel32 -luser32 -lgdi32 \ |
429 | -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \ | |
036c1c1e | 430 | -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \ |
4ebea3c6 | 431 | -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32 |
1e71036e JH |
432 | |
433 | .IF "$(CFG)" == "Debug" | |
434 | OPTIMIZE = -g -O2 -DDEBUGGING | |
435 | LINK_DBG = -g | |
436 | .ELSE | |
ec25c072 SH |
437 | OPTIMIZE = -s -O2 |
438 | LINK_DBG = -s | |
1e71036e JH |
439 | .ENDIF |
440 | ||
bb275e72 | 441 | EXTRACFLAGS = |
fdb5f000 | 442 | CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE) |
1e71036e JH |
443 | LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" |
444 | OBJOUT_FLAG = -o | |
445 | EXEOUT_FLAG = -o | |
446 | LIBOUT_FLAG = | |
447 | ||
9b1f1815 | 448 | BUILDOPT += -fno-strict-aliasing -mms-bitfields |
1e71036e JH |
449 | |
450 | .ELSE | |
451 | ||
5398666e SH |
452 | # All but the free version of VC++ 7.x can load DLLs on demand. Makes the test |
453 | # suite run in about 10% less time. | |
454 | .IF "$(CCTYPE)" != "MSVC70FREE" | |
455 | DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib | |
456 | .ENDIF | |
457 | ||
458 | # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and | |
459 | # DLLs. These either need copying everywhere with the binaries, or else need | |
460 | # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For | |
461 | # simplicity, embed them if they exist (and delete them afterwards so that they | |
462 | # don't get installed too). | |
463 | EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \ | |
464 | if exist $@.manifest del $@.manifest | |
465 | EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \ | |
466 | if exist $@.manifest del $@.manifest | |
467 | ||
468 | # Most relevant compiler-specific options fall into two groups: | |
469 | # either pre-MSVC80 or MSVC80 onwards, so define a macro for this. | |
470 | .IF "$(CCTYPE)" == "MSVC60" || \ | |
471 | "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE" | |
472 | PREMSVC80 = define | |
473 | .ELSE | |
474 | PREMSVC80 = undef | |
475 | .ENDIF | |
476 | ||
1e71036e JH |
477 | CC = cl |
478 | LINK32 = link | |
479 | LIB32 = $(LINK32) -lib | |
480 | RSC = rc | |
481 | ||
482 | # | |
483 | # Options | |
484 | # | |
485 | ||
486 | INCLUDES = -I$(COREDIR) -I.\include -I. -I.. | |
487 | #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX | |
9cef8306 | 488 | DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT |
1e71036e JH |
489 | LOCDEFS = -DPERLDLL -DPERL_CORE |
490 | SUBSYS = console | |
a7d225ec | 491 | CXX_FLAG = -TP -EHsc |
1e71036e | 492 | |
1e71036e | 493 | LIBC = msvcrt.lib |
1e71036e | 494 | |
1e71036e | 495 | .IF "$(CFG)" == "Debug" |
2a46176f | 496 | OPTIMIZE = -Od -MD -Zi -DDEBUGGING |
c623ac67 | 497 | LINK_DBG = -debug |
1e71036e | 498 | .ELSE |
00a13560 SH |
499 | # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64 |
500 | OPTIMIZE = -O1 -MD -Zi -DNDEBUG | |
ec25c072 SH |
501 | # we enable debug symbols in release builds also |
502 | LINK_DBG = -debug -opt:ref,icf | |
503 | # you may want to enable this if you want COFF symbols in the executables | |
504 | # in addition to the PDB symbols. The default Dr. Watson that ships with | |
505 | # Windows can use the the former but not latter. The free WinDbg can be | |
506 | # installed to get better stack traces from just the PDB symbols, so we | |
507 | # avoid the bloat of COFF symbols by default. | |
508 | #LINK_DBG = $(LINK_DBG) -debugtype:both | |
d921a5fb GS |
509 | .IF "$(WIN64)" == "define" |
510 | # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG) | |
00a13560 | 511 | OPTIMIZE += -GL |
d921a5fb | 512 | LINK_DBG += -ltcg |
1e71036e | 513 | .ENDIF |
1e71036e JH |
514 | .ENDIF |
515 | ||
c623ac67 GS |
516 | .IF "$(WIN64)" == "define" |
517 | DEFINES += -DWIN64 -DCONSERVATIVE | |
2a46176f | 518 | OPTIMIZE += -fp:precise |
da2c7419 | 519 | .ENDIF |
c5b31784 | 520 | |
5398666e | 521 | # For now, silence warnings from VC++ 8.x onwards about "unsafe" CRT functions |
4a3cf07b | 522 | # and POSIX CRT function names being deprecated. |
5398666e | 523 | .IF "$(PREMSVC80)" == "undef" |
26a6faa8 | 524 | DEFINES += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE |
c5b31784 | 525 | .ENDIF |
da2c7419 | 526 | |
2a46176f SH |
527 | # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to |
528 | # 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T | |
529 | # preprocessor option to revert back to the old functionality for | |
530 | # backward compatibility. We define this symbol here for older 32-bit | |
531 | # compilers only (which aren't using it at all) for the sole purpose | |
532 | # of getting it into $Config{ccflags}. That way if someone builds | |
533 | # Perl itself with e.g. VC6 but later installs an XS module using VC8 | |
534 | # the time_t types will still be compatible. | |
535 | .IF "$(WIN64)" == "undef" | |
5398666e | 536 | .IF "$(PREMSVC80)" == "define" |
2a46176f SH |
537 | BUILDOPT += -D_USE_32BIT_TIME_T |
538 | .ENDIF | |
539 | .ENDIF | |
540 | ||
9cef8306 | 541 | LIBBASEFILES = \ |
1e71036e JH |
542 | oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \ |
543 | comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \ | |
036c1c1e | 544 | netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \ |
6b1226db | 545 | version.lib odbc32.lib odbccp32.lib comctl32.lib |
c623ac67 | 546 | |
2a46176f SH |
547 | # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which |
548 | # doesn't include the buffer overrun verification code used by the /GS switch. | |
9453ddcd | 549 | # Since the code links against libraries that are compiled with /GS, this |
2a46176f SH |
550 | # "security cookie verification" code must be included via bufferoverflow.lib. |
551 | .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1" | |
d5415745 | 552 | LIBBASEFILES += bufferoverflowU.lib |
c623ac67 | 553 | .ENDIF |
1e71036e | 554 | |
1e71036e JH |
555 | LIBFILES = $(LIBBASEFILES) $(LIBC) |
556 | ||
9453ddcd | 557 | EXTRACFLAGS = -nologo -GF -W3 |
bb275e72 | 558 | CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \ |
1e71036e JH |
559 | $(PCHFLAGS) $(OPTIMIZE) |
560 | LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \ | |
561 | -libpath:"$(INST_COREDIR)" \ | |
562 | -machine:$(PROCESSOR_ARCHITECTURE) | |
ed2eab3f | 563 | LIB_FLAGS = -nologo |
1e71036e JH |
564 | OBJOUT_FLAG = -Fo |
565 | EXEOUT_FLAG = -Fe | |
566 | LIBOUT_FLAG = /out: | |
567 | ||
1e71036e JH |
568 | .ENDIF |
569 | ||
1e71036e JH |
570 | CFLAGS_O = $(CFLAGS) $(BUILDOPT) |
571 | ||
5398666e | 572 | .IF "$(PREMSVC80)" == "undef" |
5e863249 | 573 | LINK_FLAGS += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'" |
4ebea3c6 JD |
574 | .ELSE |
575 | RSC_FLAGS = -DINCLUDE_MANIFEST | |
576 | .ENDIF | |
577 | ||
578 | ||
1e71036e JH |
579 | # used to allow local linking flags that are not propogated into Config.pm, |
580 | # currently unused | |
581 | # -- BKS, 12-12-1999 | |
582 | PRIV_LINK_FLAGS *= | |
583 | BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS) | |
584 | ||
585 | #################### do not edit below this line ####################### | |
586 | ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ############## | |
587 | ||
13631a73 SH |
588 | # Some old dmakes (including Sarathy's one at |
589 | # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip) | |
590 | # don't support logical OR (||) or logical AND (&&) in conditional | |
591 | # expressions and hence don't process this makefile correctly. Determine | |
592 | # whether this is the case so that we can give the user an error message. | |
593 | .IF 1 == 1 || 1 == 1 | |
594 | NEWDMAKE = define | |
66e09d83 | 595 | .ELSE |
13631a73 | 596 | NEWDMAKE = undef |
e54e7e92 SH |
597 | .ENDIF |
598 | ||
1e71036e JH |
599 | o *= .obj |
600 | a *= .lib | |
601 | ||
602 | LKPRE = INPUT ( | |
603 | LKPOST = ) | |
604 | ||
605 | # | |
606 | # Rules | |
607 | # | |
608 | ||
609 | .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res | |
610 | ||
611 | .c$(o): | |
612 | $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $< | |
613 | ||
614 | .c.i: | |
615 | $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@ | |
616 | ||
617 | .y.c: | |
618 | $(NOOP) | |
619 | ||
620 | $(o).dll: | |
378eeda7 | 621 | .IF "$(CCTYPE)" == "GCC" |
1e71036e JH |
622 | $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES) |
623 | $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@ | |
624 | .ELSE | |
625 | $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \ | |
626 | -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL) | |
c8e599d3 | 627 | $(EMBED_DLL_MANI) |
1e71036e JH |
628 | .ENDIF |
629 | ||
630 | .rc.res: | |
770c139a | 631 | .IF "$(CCTYPE)" == "GCC" |
4ebea3c6 | 632 | $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@ |
770c139a | 633 | .ELSE |
4ebea3c6 | 634 | $(RSC) -i.. -DINCLUDE_MANIFEST $< |
770c139a | 635 | .ENDIF |
1e71036e JH |
636 | |
637 | # | |
638 | # various targets | |
639 | MINIPERL = ..\miniperl.exe | |
640 | MINIDIR = .\mini | |
641 | PERLEXE = ..\perl.exe | |
642 | WPERLEXE = ..\wperl.exe | |
ed2eab3f | 643 | PERLEXESTATIC = ..\perl-static.exe |
cc0b589a | 644 | STATICDIR = .\static.tmp |
1e71036e | 645 | GLOBEXE = ..\perlglob.exe |
2d9d8159 | 646 | CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl |
1e71036e JH |
647 | MINIMOD = ..\lib\ExtUtils\Miniperl.pm |
648 | X2P = ..\x2p\a2p.exe | |
202d1001 | 649 | GENUUDMAP = ..\generate_uudmap.exe |
eb4420e6 | 650 | .IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define" |
ed2eab3f SH |
651 | PERLSTATIC = static |
652 | .ELSE | |
653 | PERLSTATIC = | |
654 | .ENDIF | |
1e71036e | 655 | |
ca12659b | 656 | # Unicode data files generated by mktables |
3df51b85 | 657 | UNIDATAFILES = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \ |
7ebf06b3 | 658 | ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \ |
1a234f2b | 659 | ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \ |
3e344d15 | 660 | ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst |
ca12659b NC |
661 | |
662 | # Directories of Unicode data files generated by mktables | |
27a8011f SH |
663 | UNIDATADIR1 = ..\lib\unicore\To |
664 | UNIDATADIR2 = ..\lib\unicore\lib | |
ca12659b | 665 | |
4ebea3c6 | 666 | PERLEXE_MANIFEST= .\perlexe.manifest |
3890b58f RGS |
667 | PERLEXE_ICO = .\perlexe.ico |
668 | PERLEXE_RES = .\perlexe.res | |
669 | PERLDLL_RES = | |
670 | ||
1e71036e JH |
671 | # Nominate a target which causes extensions to be re-built |
672 | # This used to be $(PERLEXE), but at worst it is the .dll that they depend | |
673 | # on and really only the interface - i.e. the .def file used to export symbols | |
674 | # from the .dll | |
675 | PERLDEP = perldll.def | |
676 | ||
677 | ||
678 | PL2BAT = bin\pl2bat.pl | |
1e71036e JH |
679 | |
680 | UTILS = \ | |
681 | ..\utils\h2ph \ | |
682 | ..\utils\splain \ | |
1e71036e JH |
683 | ..\utils\perlbug \ |
684 | ..\utils\pl2pm \ | |
685 | ..\utils\c2ph \ | |
827a599d | 686 | ..\utils\pstruct \ |
1e71036e JH |
687 | ..\utils\h2xs \ |
688 | ..\utils\perldoc \ | |
1e71036e JH |
689 | ..\utils\perlivp \ |
690 | ..\utils\libnetcfg \ | |
827a599d GS |
691 | ..\utils\enc2xs \ |
692 | ..\utils\piconv \ | |
bb4e9162 | 693 | ..\utils\config_data \ |
18a1cebe | 694 | ..\utils\corelist \ |
83cd6e83 | 695 | ..\utils\cpan \ |
ea0e987d | 696 | ..\utils\xsubpp \ |
d658129c | 697 | ..\utils\pod2html \ |
4b618757 | 698 | ..\utils\prove \ |
291d3373 | 699 | ..\utils\ptar \ |
b8669316 | 700 | ..\utils\ptardiff \ |
deabda19 | 701 | ..\utils\ptargrep \ |
08ad9465 | 702 | ..\utils\zipdetails \ |
3ddf9550 | 703 | ..\utils\shasum \ |
ea0e987d | 704 | ..\utils\instmodsh \ |
84f04405 | 705 | ..\utils\json_pp \ |
1e71036e | 706 | ..\x2p\find2perl \ |
827a599d | 707 | ..\x2p\psed \ |
1e71036e | 708 | ..\x2p\s2p \ |
1e71036e JH |
709 | bin\exetype.pl \ |
710 | bin\runperl.pl \ | |
711 | bin\pl2bat.pl \ | |
712 | bin\perlglob.pl \ | |
713 | bin\search.pl | |
714 | ||
378eeda7 | 715 | .IF "$(CCTYPE)" == "GCC" |
1e71036e JH |
716 | |
717 | CFGSH_TMPL = config.gc | |
718 | CFGH_TMPL = config_H.gc | |
f7cf42bb RS |
719 | PERLIMPLIB = ..\libperl519$(a) |
720 | PERLSTATICLIB = ..\libperl519s$(a) | |
1f64ae15 SH |
721 | INT64 = long long |
722 | INT64f = ll | |
1e71036e JH |
723 | |
724 | .ELSE | |
725 | ||
726 | CFGSH_TMPL = config.vc | |
727 | CFGH_TMPL = config_H.vc | |
1f64ae15 SH |
728 | INT64 = __int64 |
729 | INT64f = I64 | |
1e71036e JH |
730 | |
731 | .ENDIF | |
732 | ||
733 | # makedef.pl must be updated if this changes, and this should normally | |
734 | # only change when there is an incompatible revision of the public API. | |
f7cf42bb RS |
735 | PERLIMPLIB *= ..\perl519$(a) |
736 | PERLSTATICLIB *= ..\perl519s$(a) | |
737 | PERLDLL = ..\perl519.dll | |
1e71036e | 738 | |
b6ed7314 YO |
739 | XCOPY = xcopy /f /r /i /d /y |
740 | RCOPY = xcopy /f /r /i /e /d /y | |
65980d94 | 741 | NOOP = @rem |
1e71036e | 742 | |
1e71036e JH |
743 | MICROCORE_SRC = \ |
744 | ..\av.c \ | |
745 | ..\deb.c \ | |
746 | ..\doio.c \ | |
747 | ..\doop.c \ | |
748 | ..\dump.c \ | |
749 | ..\globals.c \ | |
750 | ..\gv.c \ | |
e1a479c5 | 751 | ..\mro.c \ |
1e71036e JH |
752 | ..\hv.c \ |
753 | ..\locale.c \ | |
26ea9e12 | 754 | ..\keywords.c \ |
a0d89a74 | 755 | ..\mathoms.c \ |
1e71036e JH |
756 | ..\mg.c \ |
757 | ..\numeric.c \ | |
758 | ..\op.c \ | |
ff6de8cd | 759 | ..\pad.c \ |
1e71036e JH |
760 | ..\perl.c \ |
761 | ..\perlapi.c \ | |
762 | ..\perly.c \ | |
763 | ..\pp.c \ | |
764 | ..\pp_ctl.c \ | |
765 | ..\pp_hot.c \ | |
766 | ..\pp_pack.c \ | |
84d4ea48 | 767 | ..\pp_sort.c \ |
1e71036e | 768 | ..\pp_sys.c \ |
10bc17b6 | 769 | ..\reentr.c \ |
1e71036e JH |
770 | ..\regcomp.c \ |
771 | ..\regexec.c \ | |
772 | ..\run.c \ | |
773 | ..\scope.c \ | |
774 | ..\sv.c \ | |
775 | ..\taint.c \ | |
776 | ..\toke.c \ | |
777 | ..\universal.c \ | |
778 | ..\utf8.c \ | |
48462a74 | 779 | ..\util.c |
1e71036e JH |
780 | |
781 | EXTRACORE_SRC += perllib.c | |
782 | ||
783 | .IF "$(PERL_MALLOC)" == "define" | |
784 | EXTRACORE_SRC += ..\malloc.c | |
785 | .ENDIF | |
786 | ||
1e71036e | 787 | EXTRACORE_SRC += ..\perlio.c |
1e71036e JH |
788 | |
789 | WIN32_SRC = \ | |
790 | .\win32.c \ | |
1e71036e | 791 | .\win32sck.c \ |
9cef8306 JD |
792 | .\win32thread.c \ |
793 | .\fcrypt.c | |
1e71036e | 794 | |
b6d604f4 NIS |
795 | # We need this for miniperl build unless we override canned |
796 | # config.h #define building mini\* | |
797 | #.IF "$(USE_PERLIO)" == "define" | |
6ea0e807 | 798 | WIN32_SRC += .\win32io.c |
b6d604f4 | 799 | #.ENDIF |
6ea0e807 | 800 | |
1e71036e JH |
801 | X2P_SRC = \ |
802 | ..\x2p\a2p.c \ | |
803 | ..\x2p\hash.c \ | |
804 | ..\x2p\str.c \ | |
805 | ..\x2p\util.c \ | |
806 | ..\x2p\walk.c | |
807 | ||
808 | CORE_NOCFG_H = \ | |
809 | ..\av.h \ | |
810 | ..\cop.h \ | |
811 | ..\cv.h \ | |
812 | ..\dosish.h \ | |
813 | ..\embed.h \ | |
814 | ..\form.h \ | |
815 | ..\gv.h \ | |
816 | ..\handy.h \ | |
817 | ..\hv.h \ | |
818 | ..\iperlsys.h \ | |
819 | ..\mg.h \ | |
820 | ..\nostdio.h \ | |
821 | ..\op.h \ | |
822 | ..\opcode.h \ | |
823 | ..\perl.h \ | |
824 | ..\perlapi.h \ | |
825 | ..\perlsdio.h \ | |
826 | ..\perlsfio.h \ | |
827 | ..\perly.h \ | |
828 | ..\pp.h \ | |
829 | ..\proto.h \ | |
cdb0f547 | 830 | ..\regcomp.h \ |
1e71036e JH |
831 | ..\regexp.h \ |
832 | ..\scope.h \ | |
833 | ..\sv.h \ | |
834 | ..\thread.h \ | |
835 | ..\unixish.h \ | |
836 | ..\utf8.h \ | |
837 | ..\util.h \ | |
838 | ..\warnings.h \ | |
839 | ..\XSUB.h \ | |
840 | ..\EXTERN.h \ | |
841 | ..\perlvars.h \ | |
842 | ..\intrpvar.h \ | |
1e71036e JH |
843 | .\include\dirent.h \ |
844 | .\include\netdb.h \ | |
845 | .\include\sys\socket.h \ | |
846 | .\win32.h | |
847 | ||
a148edb6 | 848 | CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h |
1e71036e | 849 | |
202d1001 | 850 | UUDMAP_H = ..\uudmap.h |
efa50c51 | 851 | BITCOUNT_H = ..\bitcount.h |
6f83ef0e | 852 | MG_DATA_H = ..\mg_data.h |
9387abf8 | 853 | GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H) |
202d1001 | 854 | |
1e71036e JH |
855 | MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o)) |
856 | CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o)) | |
857 | WIN32_OBJ = $(WIN32_SRC:db:+$(o)) | |
858 | MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)} | |
ba14dd9a | 859 | MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)} |
1e71036e | 860 | MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ) |
281da5ea | 861 | DLL_OBJ = $(DYNALOADER) |
1e71036e | 862 | X2P_OBJ = $(X2P_SRC:db:+$(o)) |
202d1001 | 863 | GENUUDMAP_OBJ = $(GENUUDMAP:db:+$(o)) |
1e71036e JH |
864 | |
865 | PERLDLL_OBJ = $(CORE_OBJ) | |
866 | PERLEXE_OBJ = perlmain$(o) | |
ed2eab3f | 867 | PERLEXEST_OBJ = perlmainst$(o) |
1e71036e JH |
868 | |
869 | PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ) | |
870 | ||
871 | .IF "$(USE_SETARGV)" != "" | |
872 | SETARGV_OBJ = setargv$(o) | |
873 | .ENDIF | |
874 | ||
a1f2e719 VK |
875 | .IF "$(ALL_STATIC)" == "define" |
876 | # some exclusions, unfortunately, until fixed: | |
903f2d70 | 877 | # - MakeMaker isn't capable enough for SDBM_File (small bug) |
13cedc2a SH |
878 | # - GCC's linker gets undefined references to _BZ2_compressBlock and |
879 | # _cp936_encoding, _cp932_encoding and others in Encode/CN.o and Encode/JP.o | |
880 | STATIC_EXT = * !SDBM_File | |
a6c37464 | 881 | .IF "$(CCTYPE)" == "GCC" |
13cedc2a | 882 | STATIC_EXT += !Compress/Raw/Bzip2 !Encode |
a6c37464 | 883 | .ENDIF |
a1f2e719 VK |
884 | .ELSE |
885 | # specify static extensions here, for example: | |
7a278470 SH |
886 | # (be sure to include Win32CORE to load Win32 on demand) |
887 | #STATIC_EXT = Win32CORE Cwd Compress/Raw/Zlib | |
78ff2d7b | 888 | STATIC_EXT = Win32CORE |
a1f2e719 | 889 | .ENDIF |
1e71036e | 890 | |
281da5ea | 891 | DYNALOADER = ..\DynaLoader$(o) |
1e71036e | 892 | |
1e71036e JH |
893 | # vars must be separated by "\t+~\t+", since we're using the tempfile |
894 | # version of config_sh.pl (we were overflowing someone's buffer by | |
895 | # trying to fit them all on the command line) | |
896 | # -- BKS 10-17-1999 | |
897 | CFG_VARS = \ | |
13631a73 SH |
898 | INST_TOP=$(INST_TOP) ~ \ |
899 | INST_VER=$(INST_VER) ~ \ | |
1e71036e JH |
900 | INST_ARCH=$(INST_ARCH) ~ \ |
901 | archname=$(ARCHNAME) ~ \ | |
902 | cc=$(CC) ~ \ | |
903 | ld=$(LINK32) ~ \ | |
bb275e72 | 904 | ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \ |
1e71036e | 905 | cf_email=$(EMAIL) ~ \ |
1e71036e JH |
906 | d_mymalloc=$(PERL_MALLOC) ~ \ |
907 | libs=$(LIBFILES:f) ~ \ | |
13631a73 | 908 | incpath=$(CCINCDIR) ~ \ |
1e71036e | 909 | libperl=$(PERLIMPLIB:f) ~ \ |
13631a73 | 910 | libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \ |
1e71036e JH |
911 | libc=$(LIBC) ~ \ |
912 | make=dmake ~ \ | |
84c322f7 MB |
913 | _o=$(o) ~ \ |
914 | obj_ext=$(o) ~ \ | |
915 | _a=$(a) ~ \ | |
916 | lib_ext=$(a) ~ \ | |
1e71036e | 917 | static_ext=$(STATIC_EXT) ~ \ |
7e0017d3 | 918 | usethreads=$(USE_ITHREADS) ~ \ |
1e71036e | 919 | useithreads=$(USE_ITHREADS) ~ \ |
1e71036e JH |
920 | usemultiplicity=$(USE_MULTI) ~ \ |
921 | useperlio=$(USE_PERLIO) ~ \ | |
1f64ae15 | 922 | use64bitint=$(USE_64_BIT_INT) ~ \ |
c7dd62f6 | 923 | uselargefiles=$(USE_LARGE_FILES) ~ \ |
7ada00a0 | 924 | usesitecustomize=$(USE_SITECUST) ~ \ |
13631a73 | 925 | LINK_FLAGS=$(LINK_FLAGS) ~ \ |
7bef440c | 926 | optimize=$(OPTIMIZE) ~ \ |
1f64ae15 SH |
927 | ARCHPREFIX=$(ARCHPREFIX) ~ \ |
928 | WIN64=$(WIN64) | |
1e71036e | 929 | |
2a6dc374 | 930 | ICWD = -I..\dist\Cwd -I..\dist\Cwd\lib |
403f501d | 931 | |
1e71036e JH |
932 | # |
933 | # Top targets | |
934 | # | |
935 | ||
7c3b4d00 SH |
936 | all : CHECKDMAKE .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \ |
937 | $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) MakePPPort \ | |
a34ce875 | 938 | $(PERLEXE) $(X2P) Extensions Extensions_nonxs $(PERLSTATIC) |
1e71036e | 939 | |
c900f745 SH |
940 | regnodes : ..\regnodes.h |
941 | ||
5b04aee6 | 942 | ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h |
9ce5b024 SH |
943 | |
944 | ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h | |
945 | ||
7c3b4d00 SH |
946 | reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \ |
947 | $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \ | |
250c5aad SH |
948 | $(X2P) Extensions_reonly |
949 | ||
ed2eab3f SH |
950 | static: $(PERLEXESTATIC) |
951 | ||
1e71036e JH |
952 | #---------------------------------------------------------------- |
953 | ||
13631a73 SH |
954 | CHECKDMAKE : |
955 | .IF "$(NEWDMAKE)" == "define" | |
956 | $(NOOP) | |
957 | .ELSE | |
958 | @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions. | |
959 | @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/ | |
960 | @exit 1 | |
961 | .ENDIF | |
962 | ||
1e71036e | 963 | $(GLOBEXE) : perlglob$(o) |
378eeda7 | 964 | .IF "$(CCTYPE)" == "GCC" |
1e71036e JH |
965 | $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES) |
966 | .ELSE | |
967 | $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \ | |
968 | perlglob$(o) setargv$(o) | |
c8e599d3 | 969 | $(EMBED_EXE_MANI) |
1e71036e JH |
970 | .ENDIF |
971 | ||
972 | perlglob$(o) : perlglob.c | |
973 | ||
974 | config.w32 : $(CFGSH_TMPL) | |
975 | copy $(CFGSH_TMPL) config.w32 | |
976 | ||
1f64ae15 SH |
977 | # |
978 | # Copy the template config.h and set configurables at the end of it | |
979 | # as per the options chosen and compiler used. | |
980 | # Note: This config.h is only used to build miniperl.exe anyway, but | |
981 | # it's as well to have its options correct to be sure that it builds | |
982 | # and so that it's "-V" options are correct for use by makedef.pl. The | |
983 | # real config.h used to build perl.exe is generated from the top-level | |
984 | # config_h.SH by config_h.PL (run by miniperl.exe). | |
985 | # | |
1e71036e JH |
986 | .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H) |
987 | -del /f config.h | |
988 | copy $(CFGH_TMPL) config.h | |
1f64ae15 SH |
989 | @echo.>>$@ |
990 | @echo #ifndef _config_h_footer_>>$@ | |
991 | @echo #define _config_h_footer_>>$@ | |
992 | @echo #undef PTRSIZE>>$@ | |
993 | @echo #undef SSize_t>>$@ | |
994 | @echo #undef HAS_ATOLL>>$@ | |
995 | @echo #undef HAS_STRTOLL>>$@ | |
996 | @echo #undef HAS_STRTOULL>>$@ | |
997 | @echo #undef IVTYPE>>$@ | |
998 | @echo #undef UVTYPE>>$@ | |
999 | @echo #undef IVSIZE>>$@ | |
1000 | @echo #undef UVSIZE>>$@ | |
1001 | @echo #undef NV_PRESERVES_UV>>$@ | |
1002 | @echo #undef NV_PRESERVES_UV_BITS>>$@ | |
1003 | @echo #undef IVdf>>$@ | |
1004 | @echo #undef UVuf>>$@ | |
1005 | @echo #undef UVof>>$@ | |
1006 | @echo #undef UVxf>>$@ | |
1007 | @echo #undef UVXf>>$@ | |
1008 | @echo #undef USE_64_BIT_INT>>$@ | |
1009 | @echo #undef Size_t_size>>$@ | |
1010 | .IF "$(WIN64)"=="define" | |
1011 | @echo #define PTRSIZE ^8>>$@ | |
1012 | @echo #define SSize_t $(INT64)>>$@ | |
1013 | @echo #define HAS_ATOLL>>$@ | |
1014 | @echo #define HAS_STRTOLL>>$@ | |
1015 | @echo #define HAS_STRTOULL>>$@ | |
1016 | @echo #define Size_t_size ^8>>$@ | |
1017 | .ELSE | |
1018 | @echo #define PTRSIZE ^4>>$@ | |
1019 | @echo #define SSize_t int>>$@ | |
1020 | @echo #undef HAS_ATOLL>>$@ | |
1021 | @echo #undef HAS_STRTOLL>>$@ | |
1022 | @echo #undef HAS_STRTOULL>>$@ | |
1023 | @echo #define Size_t_size ^4>>$@ | |
1024 | .ENDIF | |
1025 | .IF "$(USE_64_BIT_INT)"=="define" | |
1026 | @echo #define IVTYPE $(INT64)>>$@ | |
1027 | @echo #define UVTYPE unsigned $(INT64)>>$@ | |
1028 | @echo #define IVSIZE ^8>>$@ | |
1029 | @echo #define UVSIZE ^8>>$@ | |
1030 | @echo #undef NV_PRESERVES_UV>>$@ | |
1031 | @echo #define NV_PRESERVES_UV_BITS 53>>$@ | |
1032 | @echo #define IVdf "$(INT64f)d">>$@ | |
1033 | @echo #define UVuf "$(INT64f)u">>$@ | |
1034 | @echo #define UVof "$(INT64f)o">>$@ | |
1035 | @echo #define UVxf "$(INT64f)x">>$@ | |
1036 | @echo #define UVXf "$(INT64f)X">>$@ | |
1037 | @echo #define USE_64_BIT_INT>>$@ | |
1038 | .ELSE | |
1039 | @echo #define IVTYPE long>>$@ | |
1040 | @echo #define UVTYPE unsigned long>>$@ | |
1041 | @echo #define IVSIZE ^4>>$@ | |
1042 | @echo #define UVSIZE ^4>>$@ | |
1043 | @echo #define NV_PRESERVES_UV>>$@ | |
1044 | @echo #define NV_PRESERVES_UV_BITS 32>>$@ | |
1045 | @echo #define IVdf "ld">>$@ | |
1046 | @echo #define UVuf "lu">>$@ | |
1047 | @echo #define UVof "lo">>$@ | |
1048 | @echo #define UVxf "lx">>$@ | |
1049 | @echo #define UVXf "lX">>$@ | |
1050 | @echo #undef USE_64_BIT_INT>>$@ | |
1051 | .ENDIF | |
1052 | @echo #endif>>$@ | |
1e71036e | 1053 | |
fcd65f8d | 1054 | ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl |
16ad9bfa | 1055 | cd .. && miniperl -Ilib make_patchnum.pl |
a148edb6 | 1056 | |
931482b7 NC |
1057 | # make sure that we recompile perl.c if the git version changes |
1058 | ..\perl$(o) : ..\git_version.h | |
a148edb6 | 1059 | |
1e71036e JH |
1060 | ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm |
1061 | $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \ | |
1062 | $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh | |
1063 | ||
1f64ae15 SH |
1064 | # This target is for when changes to the main config.sh happen. |
1065 | # Edit config.gc, then make perl using GCC in a minimal configuration (i.e. | |
3d39cce8 | 1066 | # with MULTI, ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make |
76febb1c | 1067 | # this target to regenerate config_H.gc. |
1e71036e | 1068 | regen_config_h: |
76febb1c | 1069 | $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \ |
1e71036e | 1070 | $(CFGSH_TMPL) > ..\config.sh |
4e73d6a4 | 1071 | $(MINIPERL) -I..\lib ..\configpm --chdir=.. |
1e71036e | 1072 | -del /f $(CFGH_TMPL) |
f6b3c354 | 1073 | -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)" |
1e71036e JH |
1074 | rename config.h $(CFGH_TMPL) |
1075 | ||
1076 | $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl | |
4e73d6a4 | 1077 | $(MINIPERL) -I..\lib ..\configpm --chdir=.. |
1e71036e JH |
1078 | if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL) |
1079 | $(XCOPY) ..\*.h $(COREDIR)\*.* | |
1080 | $(XCOPY) *.h $(COREDIR)\*.* | |
1e71036e | 1081 | $(RCOPY) include $(COREDIR)\*.* |
f6b3c354 | 1082 | $(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)" \ |
1e71036e JH |
1083 | || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE) |
1084 | ||
cb251201 NC |
1085 | # See the comment in Makefile.SH explaining this seemingly cranky ordering |
1086 | $(MINIPERL) : ..\lib\buildcustomize.pl | |
5e4c4c91 | 1087 | |
cb251201 | 1088 | ..\lib\buildcustomize.pl : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS) ..\write_buildcustomize.pl |
378eeda7 | 1089 | .IF "$(CCTYPE)" == "GCC" |
cb251201 | 1090 | $(LINK32) -v -mconsole -o $(MINIPERL) $(BLINK_FLAGS) \ |
13631a73 | 1091 | $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST)) |
1e71036e | 1092 | .ELSE |
cb251201 | 1093 | $(LINK32) -subsystem:console -out:$(MINIPERL) $(BLINK_FLAGS) \ |
19253ae6 | 1094 | @$(mktmp $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ)) |
c8e599d3 | 1095 | $(EMBED_EXE_MANI) |
1e71036e | 1096 | .ENDIF |
b78ac715 | 1097 | $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl .. |
1e71036e JH |
1098 | |
1099 | $(MINIDIR) : | |
1100 | if not exist "$(MINIDIR)" mkdir "$(MINIDIR)" | |
1101 | ||
1102 | $(MINICORE_OBJ) : $(CORE_NOCFG_H) | |
8c4561fb | 1103 | $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*B).c |
1e71036e JH |
1104 | |
1105 | $(MINIWIN32_OBJ) : $(CORE_NOCFG_H) | |
a19baa61 | 1106 | $(CC) -c $(CFLAGS) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*B).c |
1e71036e JH |
1107 | |
1108 | # -DPERL_IMPLICIT_SYS needs C++ for perllib.c | |
1109 | # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless | |
1110 | # unless the .IF is true), so instead we use a .ELSE with the default. | |
1111 | # This is the only file that depends on perlhost.h, vmem.h, and vdir.h | |
1112 | ||
1113 | perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h | |
acfe0abc | 1114 | .IF "$(USE_IMP_SYS)" == "define" |
322fd642 | 1115 | $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c |
1e71036e | 1116 | .ELSE |
322fd642 | 1117 | $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c |
1e71036e JH |
1118 | .ENDIF |
1119 | ||
1120 | # 1. we don't want to rebuild miniperl.exe when config.h changes | |
1121 | # 2. we don't want to rebuild miniperl.exe with non-default config.h | |
931482b7 | 1122 | # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it |
1e71036e JH |
1123 | $(MINI_OBJ) : $(CORE_NOCFG_H) |
1124 | ||
1125 | $(WIN32_OBJ) : $(CORE_H) | |
9848074e | 1126 | |
1e71036e | 1127 | $(CORE_OBJ) : $(CORE_H) |
9848074e | 1128 | |
1e71036e | 1129 | $(DLL_OBJ) : $(CORE_H) |
9848074e | 1130 | |
1e71036e JH |
1131 | $(X2P_OBJ) : $(CORE_H) |
1132 | ||
d500e60d | 1133 | perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl |
c6d234b8 | 1134 | $(MINIPERL) -I..\lib create_perllibst_h.pl |
c1effa61 | 1135 | $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \ |
080c3729 | 1136 | $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def |
1e71036e | 1137 | |
d2b25974 | 1138 | $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static |
378eeda7 | 1139 | .IF "$(CCTYPE)" == "GCC" |
1e71036e | 1140 | $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \ |
13631a73 SH |
1141 | $(mktmp $(LKPRE) $(PERLDLL_OBJ) \ |
1142 | $(shell @type Extensions_static) \ | |
1143 | $(LIBFILES) $(LKPOST)) | |
fa58a56f | 1144 | $(IMPLIB) --output-lib $(PERLIMPLIB) \ |
1e71036e JH |
1145 | --dllname $(PERLDLL:b).dll \ |
1146 | --def perldll.def \ | |
1147 | --base-file perl.base \ | |
1148 | --output-exp perl.exp | |
1149 | $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \ | |
13631a73 SH |
1150 | $(mktmp $(LKPRE) $(PERLDLL_OBJ) \ |
1151 | $(shell @type Extensions_static) \ | |
1152 | $(LIBFILES) perl.exp $(LKPOST)) | |
1e71036e | 1153 | .ELSE |
78d58004 | 1154 | $(LINK32) -dll -def:perldll.def -out:$@ $(BLINK_FLAGS) \ |
9e7cf449 | 1155 | @Extensions_static \ |
78d58004 | 1156 | @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \ |
13631a73 | 1157 | $(PERLDLL_RES) $(PERLDLL_OBJ)) |
c8e599d3 | 1158 | $(EMBED_DLL_MANI) |
1e71036e JH |
1159 | .ENDIF |
1160 | $(XCOPY) $(PERLIMPLIB) $(COREDIR) | |
1161 | ||
cc0b589a | 1162 | $(PERLSTATICLIB): $(PERLDLL_OBJ) Extensions_static |
378eeda7 | 1163 | .IF "$(CCTYPE)" == "GCC" |
cc0b589a SH |
1164 | if exist $(STATICDIR) rmdir /s /q $(STATICDIR) |
1165 | mkdir $(STATICDIR) | |
1166 | cd $(STATICDIR) && for %i in ($(shell @type Extensions_static)) do $(ARCHPREFIX)ar x ..\%i | |
1167 | $(LIB32) $(LIB_FLAGS) $@ $(STATICDIR)\*$(o) $(PERLDLL_OBJ) | |
1168 | rmdir /s /q $(STATICDIR) | |
ed2eab3f SH |
1169 | .ELSE |
1170 | $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \ | |
13631a73 | 1171 | @$(mktmp $(PERLDLL_OBJ)) |
ed2eab3f SH |
1172 | .ENDIF |
1173 | $(XCOPY) $(PERLSTATICLIB) $(COREDIR) | |
d2b25974 | 1174 | |
4ebea3c6 | 1175 | $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO) |
e84ac4e2 | 1176 | |
1e71036e JH |
1177 | $(MINIMOD) : $(MINIPERL) ..\minimod.pl |
1178 | cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm | |
1179 | ||
1180 | ..\x2p\a2p$(o) : ..\x2p\a2p.c | |
1181 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c | |
1182 | ||
1183 | ..\x2p\hash$(o) : ..\x2p\hash.c | |
1184 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c | |
1185 | ||
1186 | ..\x2p\str$(o) : ..\x2p\str.c | |
1187 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c | |
1188 | ||
1189 | ..\x2p\util$(o) : ..\x2p\util.c | |
1190 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c | |
1191 | ||
1192 | ..\x2p\walk$(o) : ..\x2p\walk.c | |
1193 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c | |
1194 | ||
403f501d | 1195 | $(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions |
c1effa61 NC |
1196 | $(MINIPERL) -I..\lib ..\x2p\find2perl.PL |
1197 | $(MINIPERL) -I..\lib ..\x2p\s2p.PL | |
378eeda7 | 1198 | .IF "$(CCTYPE)" == "GCC" |
1e71036e | 1199 | $(LINK32) -v -o $@ $(BLINK_FLAGS) \ |
13631a73 | 1200 | $(mktmp $(LKPRE) $(X2P_OBJ) $(LIBFILES) $(LKPOST)) |
1e71036e | 1201 | .ELSE |
78d58004 | 1202 | $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \ |
13631a73 | 1203 | @$(mktmp $(LIBFILES) $(X2P_OBJ)) |
c8e599d3 | 1204 | $(EMBED_EXE_MANI) |
1e71036e JH |
1205 | .ENDIF |
1206 | ||
9387abf8 | 1207 | $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS) |
9444d213 | 1208 | |
6f83ef0e | 1209 | $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H) |
6999193b NC |
1210 | |
1211 | $(BITCOUNT_H) : $(GENUUDMAP) | |
9387abf8 | 1212 | $(GENUUDMAP) $(GENERATED_HEADERS) |
6f83ef0e NC |
1213 | |
1214 | $(GENUUDMAP_OBJ) : ..\mg_raw.h | |
9444d213 | 1215 | |
202d1001 | 1216 | $(GENUUDMAP) : $(GENUUDMAP_OBJ) |
378eeda7 | 1217 | .IF "$(CCTYPE)" == "GCC" |
9444d213 | 1218 | $(LINK32) -v -o $@ $(BLINK_FLAGS) \ |
13631a73 | 1219 | $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST)) |
9444d213 NC |
1220 | .ELSE |
1221 | $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \ | |
13631a73 | 1222 | @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ)) |
202d1001 | 1223 | $(EMBED_EXE_MANI) |
9444d213 NC |
1224 | .ENDIF |
1225 | ||
1e71036e JH |
1226 | perlmain.c : runperl.c |
1227 | copy runperl.c perlmain.c | |
1228 | ||
1229 | perlmain$(o) : perlmain.c | |
88c9158a | 1230 | $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ -c perlmain.c |
1e71036e | 1231 | |
ed2eab3f SH |
1232 | perlmainst.c : runperl.c |
1233 | copy runperl.c perlmainst.c | |
1234 | ||
1235 | perlmainst$(o) : perlmainst.c | |
88c9158a | 1236 | $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c |
ed2eab3f | 1237 | |
931482b7 | 1238 | $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES) |
378eeda7 | 1239 | .IF "$(CCTYPE)" == "GCC" |
1e71036e | 1240 | $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \ |
f721bdf3 | 1241 | $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) |
1e71036e | 1242 | .ELSE |
56a86867 | 1243 | $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \ |
aafd2430 | 1244 | $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ) |
c8e599d3 | 1245 | $(EMBED_EXE_MANI) |
1e71036e JH |
1246 | .ENDIF |
1247 | copy $(PERLEXE) $(WPERLEXE) | |
1248 | $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS | |
1e71036e | 1249 | |
931482b7 | 1250 | $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES) |
378eeda7 | 1251 | .IF "$(CCTYPE)" == "GCC" |
ed2eab3f | 1252 | $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \ |
aafd2430 | 1253 | $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) |
ed2eab3f | 1254 | .ELSE |
56a86867 | 1255 | $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \ |
aafd2430 | 1256 | $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ) |
ed2eab3f SH |
1257 | $(EMBED_EXE_MANI) |
1258 | .ENDIF | |
1259 | ||
d1a21686 | 1260 | MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs |
f6b3c354 | 1261 | $(MINIPERL) -I..\lib ..\mkppport |
42e07562 | 1262 | |
9dcb9602 | 1263 | #------------------------------------------------------------------------------- |
281da5ea | 1264 | # There's no direct way to mark a dependency on |
6afd19bc | 1265 | # DynaLoader.pm, so this will have to do |
5e4c4c91 | 1266 | Extensions : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER) |
250c5aad | 1267 | $(XCOPY) ..\*.h $(COREDIR)\*.* |
a193a2db | 1268 | $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic |
d2b25974 | 1269 | |
5e4c4c91 | 1270 | Extensions_reonly : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER) |
250c5aad | 1271 | $(XCOPY) ..\*.h $(COREDIR)\*.* |
a193a2db | 1272 | $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re |
250c5aad | 1273 | |
5e4c4c91 | 1274 | Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM) |
250c5aad | 1275 | $(XCOPY) ..\*.h $(COREDIR)\*.* |
a193a2db | 1276 | $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static |
c6d234b8 | 1277 | $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static |
1e71036e | 1278 | |
291c8c21 | 1279 | Extensions_nonxs : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod |
a34ce875 | 1280 | $(XCOPY) ..\*.h $(COREDIR)\*.* |
a193a2db | 1281 | $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs |
a34ce875 | 1282 | |
5e4c4c91 | 1283 | $(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs |
281da5ea NC |
1284 | $(XCOPY) ..\*.h $(COREDIR)\*.* |
1285 | $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader | |
1286 | ||
ba14dd9a | 1287 | Extensions_clean : |
a193a2db | 1288 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean |
1e71036e | 1289 | |
b4dc1df6 | 1290 | Extensions_realclean : |
a193a2db | 1291 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean |
b4dc1df6 | 1292 | |
9dcb9602 | 1293 | #------------------------------------------------------------------------------- |
1e71036e JH |
1294 | |
1295 | ||
0195b144 | 1296 | doc: $(PERLEXE) ..\pod\perltoc.pod |
b4a41557 | 1297 | $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \ |
f8dbed5a | 1298 | --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\ |
9b1d99d7 | 1299 | --recurse |
1e71036e | 1300 | |
b0b6bf2b AT |
1301 | # Note that this next section is parsed (and regenerated) by pod/buildtoc |
1302 | # so please check that script before making structural changes here | |
9ddff148 | 1303 | utils: $(PERLEXE) $(X2P) |
1e71036e | 1304 | cd ..\utils && $(MAKE) PERL=$(MINIPERL) |
b0b6bf2b AT |
1305 | copy ..\README.aix ..\pod\perlaix.pod |
1306 | copy ..\README.amiga ..\pod\perlamiga.pod | |
b0b6bf2b AT |
1307 | copy ..\README.bs2000 ..\pod\perlbs2000.pod |
1308 | copy ..\README.ce ..\pod\perlce.pod | |
1309 | copy ..\README.cn ..\pod\perlcn.pod | |
1310 | copy ..\README.cygwin ..\pod\perlcygwin.pod | |
b0b6bf2b | 1311 | copy ..\README.dos ..\pod\perldos.pod |
b0b6bf2b | 1312 | copy ..\README.freebsd ..\pod\perlfreebsd.pod |
9f968a8d | 1313 | copy ..\README.haiku ..\pod\perlhaiku.pod |
b0b6bf2b AT |
1314 | copy ..\README.hpux ..\pod\perlhpux.pod |
1315 | copy ..\README.hurd ..\pod\perlhurd.pod | |
1316 | copy ..\README.irix ..\pod\perlirix.pod | |
1317 | copy ..\README.jp ..\pod\perljp.pod | |
1318 | copy ..\README.ko ..\pod\perlko.pod | |
6477b319 | 1319 | copy ..\README.linux ..\pod\perllinux.pod |
b0b6bf2b AT |
1320 | copy ..\README.macos ..\pod\perlmacos.pod |
1321 | copy ..\README.macosx ..\pod\perlmacosx.pod | |
b0b6bf2b | 1322 | copy ..\README.netware ..\pod\perlnetware.pod |
b0846812 | 1323 | copy ..\README.openbsd ..\pod\perlopenbsd.pod |
b0b6bf2b AT |
1324 | copy ..\README.os2 ..\pod\perlos2.pod |
1325 | copy ..\README.os390 ..\pod\perlos390.pod | |
1326 | copy ..\README.os400 ..\pod\perlos400.pod | |
1327 | copy ..\README.plan9 ..\pod\perlplan9.pod | |
1328 | copy ..\README.qnx ..\pod\perlqnx.pod | |
2f08ed66 | 1329 | copy ..\README.riscos ..\pod\perlriscos.pod |
b0b6bf2b | 1330 | copy ..\README.solaris ..\pod\perlsolaris.pod |
27da23d5 | 1331 | copy ..\README.symbian ..\pod\perlsymbian.pod |
b0b6bf2b AT |
1332 | copy ..\README.tru64 ..\pod\perltru64.pod |
1333 | copy ..\README.tw ..\pod\perltw.pod | |
b0b6bf2b AT |
1334 | copy ..\README.vos ..\pod\perlvos.pod |
1335 | copy ..\README.win32 ..\pod\perlwin32.pod | |
583aa5c2 | 1336 | copy ..\pod\perldelta.pod ..\pod\perl5191delta.pod |
1e71036e | 1337 | $(PERLEXE) $(PL2BAT) $(UTILS) |
403f501d NC |
1338 | $(PERLEXE) $(ICWD) ..\autodoc.pl .. |
1339 | $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q | |
0195b144 NC |
1340 | |
1341 | ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs | |
b78c1104 | 1342 | $(PERLEXE) -f ..\pod\buildtoc -q |
1e71036e | 1343 | |
b0b6bf2b AT |
1344 | # Note that the pod cleanup in this next section is parsed (and regenerated |
1345 | # by pod/buildtoc so please check that script before making changes here | |
1346 | ||
b4dc1df6 | 1347 | distclean: realclean |
1e71036e | 1348 | -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \ |
ed2eab3f SH |
1349 | $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) \ |
1350 | $(PERLEXESTATIC) $(PERLSTATICLIB) | |
1e71036e | 1351 | -del /f *.def *.map |
ca67812f SH |
1352 | -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm |
1353 | -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm | |
48462a74 | 1354 | -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm |
1e71036e | 1355 | -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm |
a9bf183d | 1356 | -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm |
1e71036e JH |
1357 | -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm |
1358 | -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm | |
1e71036e JH |
1359 | -del /f $(LIBDIR)\File\Glob.pm |
1360 | -del /f $(LIBDIR)\Storable.pm | |
ca67812f | 1361 | -del /f $(LIBDIR)\Sys\Hostname.pm |
1e71036e | 1362 | -del /f $(LIBDIR)\Time\HiRes.pm |
ac5ea531 | 1363 | -del /f $(LIBDIR)\Unicode\Normalize.pm |
4e74047c | 1364 | -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm |
b4ad57f4 | 1365 | -del /f $(LIBDIR)\Win32.pm |
37ca3c28 | 1366 | -del /f $(LIBDIR)\Win32CORE.pm |
00701878 SH |
1367 | -del /f $(LIBDIR)\Win32API\File.pm |
1368 | -del /f $(LIBDIR)\Win32API\File\cFile.pc | |
5e4c4c91 | 1369 | -del /f $(LIBDIR)\buildcustomize.pl |
a85e0e8c | 1370 | -del /f $(DISTDIR)\XSLoader\XSLoader.pm |
1a6c65ed SH |
1371 | -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App |
1372 | -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive | |
1373 | -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute | |
1374 | -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie | |
522078af | 1375 | -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B |
1a6c65ed SH |
1376 | -if exist $(LIBDIR)\CGI rmdir /s /q $(LIBDIR)\CGI |
1377 | -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN | |
46ffdcf0 | 1378 | -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress |
522078af | 1379 | -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data |
1a6c65ed SH |
1380 | -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel |
1381 | -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest | |
ca67812f | 1382 | -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode |
1a6c65ed SH |
1383 | -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding |
1384 | -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder | |
1385 | -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command | |
1386 | -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant | |
1387 | -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist | |
1388 | -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker | |
1389 | -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec | |
1390 | -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter | |
96c33d98 | 1391 | -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash |
1a6c65ed SH |
1392 | -if exist $(LIBDIR)\I18N\LangTags rmdir /s /q $(LIBDIR)\I18N\LangTags |
1393 | -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc | |
c146e560 | 1394 | -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable |
1a6c65ed SH |
1395 | -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO |
1396 | -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC | |
69f57184 | 1397 | -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List |
1a6c65ed SH |
1398 | -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale |
1399 | -if exist $(LIBDIR)\Log rmdir /s /q $(LIBDIR)\Log | |
1400 | -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math | |
1401 | -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize | |
69f57184 | 1402 | -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME |
1a6c65ed SH |
1403 | -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module |
1404 | -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro | |
1405 | -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP | |
1406 | -if exist $(LIBDIR)\Object rmdir /s /q $(LIBDIR)\Object | |
1407 | -if exist $(LIBDIR)\Package rmdir /s /q $(LIBDIR)\Package | |
1408 | -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params | |
1409 | -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse | |
1410 | -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO | |
1411 | -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc | |
1412 | -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple | |
1413 | -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text | |
849a608a | 1414 | -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re |
522078af | 1415 | -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar |
6c4b87ea | 1416 | -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys |
1a6c65ed SH |
1417 | -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP |
1418 | -if exist $(LIBDIR)\Term\UI rmdir /s /q $(LIBDIR)\Term\UI | |
1419 | -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test | |
1420 | -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread | |
6c4b87ea | 1421 | -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads |
8cf6f931 | 1422 | -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash |
1a6c65ed | 1423 | -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate |
522078af | 1424 | -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS |
00701878 | 1425 | -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API |
60f0ee9d | 1426 | -cd $(PODDIR) && del /f *.html *.bat roffitall \ |
583aa5c2 | 1427 | perl5191delta.pod perlaix.pod perlamiga.pod perlapi.pod \ |
8d87852b NC |
1428 | perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod perldos.pod \ |
1429 | perlfreebsd.pod perlhaiku.pod perlhpux.pod perlhurd.pod \ | |
1430 | perlintern.pod perlirix.pod perljp.pod perlko.pod perllinux.pod \ | |
1431 | perlmacos.pod perlmacosx.pod perlmodlib.pod perlnetware.pod \ | |
1432 | perlopenbsd.pod perlos2.pod perlos390.pod perlos400.pod \ | |
1433 | perlplan9.pod perlqnx.pod perlriscos.pod perlsolaris.pod \ | |
1434 | perlsymbian.pod perltoc.pod perltru64.pod perltw.pod \ | |
1435 | perluniprops.pod perlvos.pod perlwin32.pod | |
827a599d | 1436 | -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \ |
c9dab4e9 | 1437 | perldoc perlivp libnetcfg enc2xs piconv cpan *.bat \ |
fb598ba5 | 1438 | xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist config_data zipdetails |
827a599d | 1439 | -cd ..\x2p && del /f find2perl s2p psed *.bat |
19ec6f53 | 1440 | -del /f ..\config.sh perlmain.c dlutils.c config.h.new \ |
ed2eab3f | 1441 | perlmainst.c |
1e71036e | 1442 | -del /f $(CONFIGPM) |
a148edb6 | 1443 | -del /f ..\lib\Config_git.pl |
1e71036e | 1444 | -del /f bin\*.bat |
d2b25974 | 1445 | -del /f perllibst.h |
4ebea3c6 | 1446 | -del /f $(PERLEXE_RES) perl.base |
85741d00 | 1447 | -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib ppport.h |
827a599d | 1448 | -cd $(EXTDIR) && del /s *.def Makefile Makefile.old |
a193a2db | 1449 | -cd $(DISTDIR) && del /s *.def Makefile Makefile.old |
83d5895a | 1450 | -cd $(CPANDIR) && del /s *.def Makefile Makefile.old |
522078af | 1451 | -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) |
522078af | 1452 | -if exist $(COREDIR) rmdir /s /q $(COREDIR) |
b4a41557 | 1453 | -if exist pod2htmd.tmp del pod2htmd.tmp |
b4a41557 | 1454 | -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR) |
0279961e | 1455 | -del /f ..\t\test_state |
1e71036e JH |
1456 | |
1457 | install : all installbare installhtml | |
1458 | ||
7c3b4d00 | 1459 | installbare : utils ..\pod\perltoc.pod |
1e71036e JH |
1460 | $(PERLEXE) ..\installperl |
1461 | if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.* | |
5548433c | 1462 | if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.* |
1e71036e | 1463 | $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.* |
ec25c072 SH |
1464 | if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.* |
1465 | if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.* | |
1e71036e JH |
1466 | $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.* |
1467 | ||
1468 | installhtml : doc | |
b4a41557 | 1469 | $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.* |
1e71036e JH |
1470 | |
1471 | inst_lib : $(CONFIGPM) | |
1e71036e JH |
1472 | $(RCOPY) ..\lib $(INST_LIB)\*.* |
1473 | ||
58fa074c | 1474 | $(UNIDATAFILES) ..\pod\perluniprops.pod .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs |
27a8011f | 1475 | cd ..\lib\unicore && \ |
2a6dc374 | 1476 | ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p |
ca12659b NC |
1477 | |
1478 | minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils | |
6c85d12e SH |
1479 | $(XCOPY) $(MINIPERL) ..\t\$(NULL) |
1480 | if exist ..\t\perl.exe del /f ..\t\perl.exe | |
1481 | rename ..\t\miniperl.exe perl.exe | |
1e71036e | 1482 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) |
1e71036e | 1483 | attrib -r ..\t\*.* |
1e71036e | 1484 | cd ..\t && \ |
32ac41f2 | 1485 | $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t |
1e71036e | 1486 | |
3bef022b | 1487 | test-prep : all utils ..\pod\perltoc.pod |
1e71036e JH |
1488 | $(XCOPY) $(PERLEXE) ..\t\$(NULL) |
1489 | $(XCOPY) $(PERLDLL) ..\t\$(NULL) | |
1e71036e | 1490 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) |
fa58a56f | 1491 | .IF "$(CCTYPE)" == "GCC" |
4cef65c2 S |
1492 | # If building with gcc versions 4.x.x or greater, then |
1493 | # the GCC helper DLL will also need copied to the test directory. | |
1494 | # The name of the dll can change, depending upon which vendor has supplied | |
1495 | # your compiler, and upon the values of "x". | |
1496 | # libstdc++-6.dll is copied if it exists as it, too, may then be needed. | |
1497 | # Without this copying, the op/taint.t test script will fail. | |
20634986 SH |
1498 | if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL) |
1499 | if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL) | |
1500 | if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL) | |
fa58a56f | 1501 | .ENDIF |
1e71036e | 1502 | |
7c3b4d00 | 1503 | test : test-prep |
0b4dcbc1 JD |
1504 | set PERL_STATIC_EXT=$(STATIC_EXT) && \ |
1505 | cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) | |
1e71036e | 1506 | |
106cf76e CBW |
1507 | test_porting : test-prep |
1508 | set PERL_STATIC_EXT=$(STATIC_EXT) && \ | |
1509 | cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t | |
1510 | ||
250c5aad SH |
1511 | test-reonly : reonly utils |
1512 | $(XCOPY) $(PERLEXE) ..\t\$(NULL) | |
1513 | $(XCOPY) $(PERLDLL) ..\t\$(NULL) | |
1514 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) | |
1515 | cd ..\t && \ | |
a4499558 | 1516 | $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\\/ $(EXTRA) && \ |
250c5aad SH |
1517 | cd ..\win32 |
1518 | ||
1519 | regen : | |
1520 | cd .. && regen.pl && cd win32 | |
1521 | ||
1e71036e | 1522 | test-notty : test-prep |
0b4dcbc1 JD |
1523 | set PERL_STATIC_EXT=$(STATIC_EXT) && \ |
1524 | set PERL_SKIP_TTY_TEST=1 && \ | |
89087c85 | 1525 | cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES) |
1e71036e | 1526 | |
7c3b4d00 | 1527 | _test : |
a01cf021 JH |
1528 | $(XCOPY) $(PERLEXE) ..\t\$(NULL) |
1529 | $(XCOPY) $(PERLDLL) ..\t\$(NULL) | |
a01cf021 | 1530 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) |
0b4dcbc1 JD |
1531 | set PERL_STATIC_EXT=$(STATIC_EXT) && \ |
1532 | cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) | |
b4a93add | 1533 | |
b4dc1df6 | 1534 | _clean : |
1e71036e JH |
1535 | -@erase miniperlmain$(o) |
1536 | -@erase $(MINIPERL) | |
1537 | -@erase perlglob$(o) | |
1538 | -@erase perlmain$(o) | |
ed2eab3f | 1539 | -@erase perlmainst$(o) |
1e71036e JH |
1540 | -@erase config.w32 |
1541 | -@erase /f config.h | |
a148edb6 | 1542 | -@erase /f ..\git_version.h |
1e71036e JH |
1543 | -@erase $(GLOBEXE) |
1544 | -@erase $(PERLEXE) | |
1545 | -@erase $(WPERLEXE) | |
ed2eab3f SH |
1546 | -@erase $(PERLEXESTATIC) |
1547 | -@erase $(PERLSTATICLIB) | |
1e71036e JH |
1548 | -@erase $(PERLDLL) |
1549 | -@erase $(CORE_OBJ) | |
9387abf8 | 1550 | -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS) |
522078af | 1551 | -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) |
27a8011f | 1552 | -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1) |
27a8011f | 1553 | -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2) |
ca12659b | 1554 | -@erase $(UNIDATAFILES) |
1e71036e JH |
1555 | -@erase $(WIN32_OBJ) |
1556 | -@erase $(DLL_OBJ) | |
1557 | -@erase $(X2P_OBJ) | |
1558 | -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res | |
1559 | -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat | |
1560 | -@erase ..\x2p\*.exe ..\x2p\*.bat | |
1561 | -@erase *.ilk | |
1562 | -@erase *.pdb | |
44ba898b | 1563 | -@erase *.tds |
9e7cf449 | 1564 | -@erase Extensions_static |
1e71036e | 1565 | |
b4dc1df6 | 1566 | |
1266ad8f | 1567 | |
6e2cec71 | 1568 | clean : Extensions_clean _clean |
1266ad8f | 1569 | |
85741d00 | 1570 | realclean : Extensions_realclean _clean |
b4dc1df6 | 1571 | |
1e71036e JH |
1572 | # Handy way to run perlbug -ok without having to install and run the |
1573 | # installed perlbug. We don't re-run the tests here - we trust the user. | |
1574 | # Please *don't* use this unless all tests pass. | |
1575 | # If you want to report test failures, use "dmake nok" instead. | |
1576 | ok: utils | |
1577 | $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" | |
1578 | ||
1579 | okfile: utils | |
1580 | $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok | |
1581 | ||
1582 | nok: utils | |
1583 | $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" | |
1584 | ||
1585 | nokfile: utils | |
1586 | $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok |