Commit | Line | Data |
---|---|---|
1e71036e JH |
1 | # |
2 | # Makefile to build perl on Windows NT using DMAKE. | |
3 | # Supported compilers: | |
da2c7419 SH |
4 | # Visual C++ 2.0 through 7.0 (and possibly newer versions) |
5 | # Borland C++ 5.02 or better | |
6 | # Mingw32 with gcc-2.95.2 or better | |
c623ac67 | 7 | # MS Platform SDK 64-bit compiler and tools **experimental** |
1e71036e JH |
8 | # |
9 | # This is set up to build a perl.exe that runs off a shared library | |
78a7c709 | 10 | # (perl59.dll). Also makes individual DLLs for the XS extensions. |
1e71036e JH |
11 | # |
12 | ||
13 | ## | |
14 | ## Make sure you read README.win32 *before* you mess with anything here! | |
15 | ## | |
16 | ||
17 | ## | |
18 | ## Build configuration. Edit the values below to suit your needs. | |
19 | ## | |
20 | ||
21 | # | |
22 | # Set these to wherever you want "dmake install" to put your | |
23 | # newly built perl. | |
24 | # | |
25 | INST_DRV *= c: | |
26 | INST_TOP *= $(INST_DRV)\perl | |
27 | ||
28 | # | |
29 | # Comment this out if you DON'T want your perl installation to be versioned. | |
30 | # This means that the new installation will overwrite any files from the | |
31 | # old installation at the same INST_TOP location. Leaving it enabled is | |
32 | # the safest route, as perl adds the extra version directory to all the | |
33 | # locations it installs files to. If you disable it, an alternative | |
34 | # versioned installation can be obtained by setting INST_TOP above to a | |
35 | # path that includes an arbitrary version string. | |
36 | # | |
69df4abc | 37 | #INST_VER *= \5.9.3 |
1e71036e JH |
38 | |
39 | # | |
40 | # Comment this out if you DON'T want your perl installation to have | |
41 | # architecture specific components. This means that architecture- | |
42 | # specific files will be installed along with the architecture-neutral | |
43 | # files. Leaving it enabled is safer and more flexible, in case you | |
44 | # want to build multiple flavors of perl and install them together in | |
45 | # the same location. Commenting it out gives you a simpler | |
46 | # installation that is easier to understand for beginners. | |
47 | # | |
ec25c072 | 48 | #INST_ARCH *= \$(ARCHNAME) |
1e71036e JH |
49 | |
50 | # | |
7ada00a0 SH |
51 | # Uncomment this if you want perl to run |
52 | # $Config{sitelibexp}\sitecustomize.pl | |
53 | # before anything else. This script can then be set up, for example, | |
54 | # to add additional entries to @INC. | |
55 | # | |
56 | #USE_SITECUST *= define | |
57 | ||
58 | # | |
1e71036e | 59 | # uncomment to enable multiple interpreters. This is need for fork() |
2cbbe5a1 | 60 | # emulation and for thread support. |
1e71036e JH |
61 | # |
62 | USE_MULTI *= define | |
63 | ||
64 | # | |
2cbbe5a1 NIS |
65 | # Interpreter cloning/threads; now reasonably complete. |
66 | # This should be enabled to get the fork() emulation. | |
67 | # This needs USE_MULTI above. | |
1e71036e JH |
68 | # |
69 | USE_ITHREADS *= define | |
70 | ||
71 | # | |
72 | # uncomment to enable the implicit "host" layer for all system calls | |
2cbbe5a1 NIS |
73 | # made by perl. This needs USE_MULTI above. |
74 | # This is also needed to get fork(). | |
1e71036e JH |
75 | # |
76 | USE_IMP_SYS *= define | |
77 | ||
78 | # | |
2cbbe5a1 NIS |
79 | # Comment out next assign to disable perl's I/O subsystem and use compiler's |
80 | # stdio for IO - depending on your compiler vendor and run time library you may | |
81 | # then get a number of fails from make test i.e. bugs - complain to them not us ;-). | |
82 | # You will also be unable to take full advantage of perl5.8's support for multiple | |
83 | # encodings and may see lower IO performance. You have been warned. | |
4a9d6100 GS |
84 | USE_PERLIO *= define |
85 | ||
86 | # | |
87 | # Comment this out if you don't want to enable large file support for | |
88 | # some reason. Should normally only be changed to maintain compatibility | |
89 | # with an older release of perl. | |
bdb4cb88 | 90 | USE_LARGE_FILES *= define |
1e71036e JH |
91 | |
92 | # | |
1e71036e JH |
93 | # uncomment exactly one of the following |
94 | # | |
95 | # Visual C++ 2.x | |
96 | #CCTYPE *= MSVC20 | |
97 | # Visual C++ > 2.x and < 6.x | |
98 | #CCTYPE *= MSVC | |
da2c7419 | 99 | # Visual C++ 6.x (aka Visual Studio 98) |
e2736246 | 100 | #CCTYPE *= MSVC60 |
da2c7419 SH |
101 | # Visual C++ Toolkit 2003 (free version of Visual C++ 7.x command-line tools) |
102 | #CCTYPE *= MSVC70FREE | |
103 | # Visual C++ 7.x (aka Visual Studio .NET 2003) (full version) | |
104 | #CCTYPE *= MSVC70 | |
1e71036e JH |
105 | # Borland 5.02 or later |
106 | #CCTYPE *= BORLAND | |
e2736246 SH |
107 | # MinGW with gcc-2.95.2 or later |
108 | CCTYPE *= GCC | |
1e71036e JH |
109 | |
110 | # | |
111 | # uncomment this if your Borland compiler is older than v5.4. | |
bdb4cb88 | 112 | #BCCOLD *= define |
1e71036e JH |
113 | # |
114 | # uncomment this if you want to use Borland's VCL as your CRT | |
bdb4cb88 | 115 | #BCCVCL *= define |
1e71036e JH |
116 | |
117 | # | |
118 | # uncomment this if you are compiling under Windows 95/98 and command.com | |
119 | # (not needed if you're running under 4DOS/NT 6.01 or later) | |
120 | #IS_WIN95 *= define | |
121 | ||
122 | # | |
123 | # uncomment next line if you want debug version of perl (big,slow) | |
124 | # If not enabled, we automatically try to use maximum optimization | |
125 | # with all compilers that are known to have a working optimizer. | |
126 | # | |
2cbbe5a1 | 127 | #CFG *= Debug |
1e71036e JH |
128 | |
129 | # | |
130 | # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler. | |
131 | # It has patches that fix known bugs in older versions of MSVCRT.DLL. | |
132 | # This currently requires VC 5.0 with Service Pack 3 or later. | |
468f45d5 | 133 | # Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/ |
1e71036e JH |
134 | # and follow the directions in the package to install. |
135 | # | |
136 | # Not recommended if you have VC 6.x and you're not running Windows 9x. | |
137 | # | |
138 | #USE_PERLCRT *= define | |
139 | ||
140 | # | |
141 | # uncomment to enable linking with setargv.obj under the Visual C | |
142 | # compiler. Setting this options enables perl to expand wildcards in | |
143 | # arguments, but it may be harder to use alternate methods like | |
144 | # File::DosGlob that are more powerful. This option is supported only with | |
145 | # Visual C. | |
146 | # | |
147 | #USE_SETARGV *= define | |
148 | ||
149 | # | |
4ace4afb SH |
150 | # if you want to have the crypt() builtin function implemented, leave this or |
151 | # CRYPT_LIB uncommented. The fcrypt.c file named here contains a suitable | |
152 | # version of des_fcrypt(). | |
1e71036e | 153 | # |
4ace4afb | 154 | CRYPT_SRC *= fcrypt.c |
1e71036e JH |
155 | |
156 | # | |
157 | # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a | |
158 | # library, uncomment this, and make sure the library exists (see README.win32) | |
159 | # Specify the full pathname of the library. | |
160 | # | |
161 | #CRYPT_LIB *= fcrypt.lib | |
162 | ||
163 | # | |
164 | # set this if you wish to use perl's malloc | |
165 | # WARNING: Turning this on/off WILL break binary compatibility with extensions | |
166 | # you may have compiled with/without it. Be prepared to recompile all | |
167 | # extensions if you change the default. Currently, this cannot be enabled | |
168 | # if you ask for USE_IMP_SYS above. | |
169 | # | |
c800dd8b | 170 | #PERL_MALLOC *= define |
8bcd5811 VK |
171 | |
172 | # | |
173 | # set this to enable debugging mstats | |
174 | # This must be enabled to use the Devel::Peek::mstat() function. This cannot | |
175 | # be enabled without PERL_MALLOC as well. | |
176 | # | |
646e33b6 | 177 | #DEBUG_MSTATS *= define |
1e71036e JH |
178 | |
179 | # | |
180 | # set the install locations of the compiler include/libraries | |
181 | # Running VCVARS32.BAT is *required* when using Visual C. | |
182 | # Some versions of Visual C don't define MSVCDIR in the environment, | |
183 | # so you may have to set CCHOME explicitly (spaces in the path name should | |
184 | # not be quoted) | |
185 | # | |
c572eed0 | 186 | .IF "$(CCTYPE)" == "BORLAND" |
8169a885 | 187 | CCHOME *= C:\Borland\BCC55 |
c572eed0 NIS |
188 | .ELIF "$(CCTYPE)" == "GCC" |
189 | CCHOME *= C:\MinGW | |
190 | .ELSE | |
1e71036e | 191 | CCHOME *= $(MSVCDIR) |
c572eed0 | 192 | .ENDIF |
1e71036e JH |
193 | CCINCDIR *= $(CCHOME)\include |
194 | CCLIBDIR *= $(CCHOME)\lib | |
195 | ||
196 | # | |
197 | # Additional compiler flags can be specified here. | |
198 | # | |
2e30e1e1 | 199 | BUILDOPT *= $(BUILDOPTEXTRA) |
1e71036e JH |
200 | |
201 | # | |
2eb87578 SH |
202 | # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's |
203 | # internal hash function unless the PERL_HASH_SEED environment variable is set. | |
204 | # Alternatively, adding -DNO_HASH_SEED will completely disable the | |
205 | # randomization feature. | |
206 | # The latter is required to maintain binary compatibility with Perl 5.8.0. | |
207 | # | |
208 | #BUILDOPT += -DPERL_HASH_SEED_EXPLICIT | |
209 | #BUILDOPT += -DNO_HASH_SEED | |
210 | ||
211 | # | |
1e71036e JH |
212 | # This should normally be disabled. Adding -DPERL_POLLUTE enables support |
213 | # for old symbols by default, at the expense of extreme pollution. You most | |
214 | # probably just want to build modules that won't compile with | |
215 | # perl Makefile.PL POLLUTE=1 | |
216 | # instead of enabling this. Please report such modules to the respective | |
217 | # authors. | |
218 | # | |
219 | #BUILDOPT += -DPERL_POLLUTE | |
220 | ||
221 | # | |
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 | # | |
228 | # This should normally be disabled. Enabling it causes perl to read scripts | |
229 | # in text mode (which is the 5.005 behavior) and will break ByteLoader. | |
bdb4cb88 | 230 | # |
1e71036e JH |
231 | #BUILDOPT += -DPERL_TEXTMODE_SCRIPTS |
232 | ||
233 | # | |
234 | # specify semicolon-separated list of extra directories that modules will | |
235 | # look for libraries (spaces in path names need not be quoted) | |
236 | # | |
237 | EXTRALIBDIRS *= | |
238 | ||
239 | # | |
240 | # set this to point to cmd.exe (only needed if you use some | |
241 | # alternate shell that doesn't grok cmd.exe style commands) | |
242 | # | |
243 | #SHELL *= g:\winnt\system32\cmd.exe | |
244 | ||
245 | # | |
246 | # set this to your email address (perl will guess a value from | |
247 | # from your loginname and your hostname, which may not be right) | |
248 | # | |
249 | #EMAIL *= | |
250 | ||
251 | ## | |
252 | ## Build configuration ends. | |
253 | ## | |
254 | ||
255 | ##################### CHANGE THESE ONLY IF YOU MUST ##################### | |
256 | ||
257 | .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == "" | |
258 | D_CRYPT = undef | |
259 | .ELSE | |
260 | D_CRYPT = define | |
261 | CRYPT_FLAG = -DHAVE_DES_FCRYPT | |
262 | .ENDIF | |
263 | ||
1e71036e | 264 | PERL_MALLOC *= undef |
646e33b6 | 265 | DEBUG_MSTATS *= undef |
1e71036e | 266 | |
7ada00a0 | 267 | USE_SITECUST *= undef |
1e71036e | 268 | USE_MULTI *= undef |
1e71036e JH |
269 | USE_ITHREADS *= undef |
270 | USE_IMP_SYS *= undef | |
271 | USE_PERLIO *= undef | |
4a9d6100 | 272 | USE_LARGE_FILES *= undef |
1e71036e JH |
273 | USE_PERLCRT *= undef |
274 | ||
646e33b6 | 275 | .IF "$(USE_IMP_SYS)" == "define" |
8bcd5811 | 276 | PERL_MALLOC = undef |
8bcd5811 VK |
277 | .ENDIF |
278 | ||
646e33b6 SH |
279 | .IF "$(PERL_MALLOC)" == "undef" |
280 | DEBUG_MSTATS = undef | |
8bcd5811 VK |
281 | .ENDIF |
282 | ||
283 | .IF "$(DEBUG_MSTATS)" == "define" | |
646e33b6 | 284 | BUILDOPT += -DPERL_DEBUGGING_MSTATS |
c800dd8b SH |
285 | .ENDIF |
286 | ||
66e09d83 | 287 | .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef" |
1e71036e JH |
288 | USE_MULTI != define |
289 | .ENDIF | |
290 | ||
66e09d83 | 291 | .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef" |
1e71036e | 292 | USE_MULTI != define |
1e71036e JH |
293 | .ENDIF |
294 | ||
7ada00a0 SH |
295 | .IF "$(USE_SITECUST)" == "define" |
296 | BUILDOPT += -DUSE_SITECUSTOMIZE | |
297 | .ENDIF | |
298 | ||
3db8f154 | 299 | .IF "$(USE_MULTI)" != "undef" |
1e71036e JH |
300 | BUILDOPT += -DPERL_IMPLICIT_CONTEXT |
301 | .ENDIF | |
302 | ||
303 | .IF "$(USE_IMP_SYS)" != "undef" | |
304 | BUILDOPT += -DPERL_IMPLICIT_SYS | |
305 | .ENDIF | |
306 | ||
c623ac67 | 307 | .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432 |
1e71036e JH |
308 | |
309 | PROCESSOR_ARCHITECTURE *= x86 | |
310 | ||
c623ac67 GS |
311 | .IF "$(WIN64)" == "" |
312 | .IF "$(PROCESSOR_ARCHITEW6432)" != "" | |
313 | PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432) | |
314 | WIN64 = define | |
315 | .ELIF "$(PROCESSOR_ARCHITECTURE)" == "IA64" | |
316 | WIN64 = define | |
317 | .ELSE | |
318 | WIN64 = undef | |
319 | .ENDIF | |
320 | .ENDIF | |
321 | ||
3db8f154 | 322 | .IF "$(USE_MULTI)" == "define" |
1e71036e JH |
323 | ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi |
324 | .ELSE | |
325 | .IF "$(USE_PERLIO)" == "define" | |
326 | ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio | |
327 | .ELSE | |
328 | ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE) | |
329 | .ENDIF | |
330 | ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE) | |
331 | .ENDIF | |
332 | ||
333 | .IF "$(USE_ITHREADS)" == "define" | |
334 | ARCHNAME !:= $(ARCHNAME)-thread | |
335 | .ENDIF | |
336 | ||
da2c7419 SH |
337 | # Visual Studio 98 and .NET 2003 specific |
338 | # VC++ 6.x and 7.x can load DLL's on demand. Makes the test suite run in | |
339 | # about 10% less time. (The free version of 7.x can't do this, however.) | |
340 | .IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" | |
036c1c1e | 341 | DELAYLOAD *= -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib |
1e71036e JH |
342 | .ENDIF |
343 | ||
344 | ARCHDIR = ..\lib\$(ARCHNAME) | |
345 | COREDIR = ..\lib\CORE | |
346 | AUTODIR = ..\lib\auto | |
347 | LIBDIR = ..\lib | |
348 | EXTDIR = ..\ext | |
349 | PODDIR = ..\pod | |
350 | EXTUTILSDIR = $(LIBDIR)\ExtUtils | |
351 | ||
352 | # | |
353 | INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin | |
354 | INST_BIN = $(INST_SCRIPT)$(INST_ARCH) | |
355 | INST_LIB = $(INST_TOP)$(INST_VER)\lib | |
356 | INST_ARCHLIB = $(INST_LIB)$(INST_ARCH) | |
357 | INST_COREDIR = $(INST_ARCHLIB)\CORE | |
358 | INST_POD = $(INST_LIB)\pod | |
359 | INST_HTML = $(INST_TOP)$(INST_VER)\html | |
360 | ||
361 | # | |
362 | # Programs to compile, build .lib files and link | |
363 | # | |
364 | ||
365 | .USESHELL : | |
366 | ||
367 | .IF "$(CCTYPE)" == "BORLAND" | |
368 | ||
369 | CC = bcc32 | |
370 | .IF "$(BCCOLD)" != "define" | |
371 | LINK32 = ilink32 | |
372 | .ELSE | |
373 | LINK32 = tlink32 | |
374 | .ENDIF | |
375 | LIB32 = tlib /P128 | |
376 | IMPLIB = implib -c | |
e54e7e92 | 377 | RSC = brcc32 |
1e71036e JH |
378 | |
379 | # | |
380 | # Options | |
381 | # | |
382 | INCLUDES = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)" | |
ba14dd9a | 383 | #PCHFLAGS = -H -Hc -H=c:\temp\bcmoduls.pch |
1e71036e JH |
384 | DEFINES = -DWIN32 $(CRYPT_FLAG) |
385 | LOCDEFS = -DPERLDLL -DPERL_CORE | |
386 | SUBSYS = console | |
387 | CXX_FLAG = -P | |
388 | ||
389 | LIBC = cw32mti.lib | |
8169a885 SH |
390 | |
391 | # same libs as MSVC, except Borland doesn't have oldnames.lib | |
392 | LIBFILES = $(CRYPT_LIB) \ | |
393 | kernel32.lib user32.lib gdi32.lib winspool.lib \ | |
394 | comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \ | |
395 | netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \ | |
396 | version.lib odbc32.lib odbccp32.lib \ | |
397 | import32.lib $(LIBC) | |
1e71036e JH |
398 | |
399 | .IF "$(CFG)" == "Debug" | |
400 | OPTIMIZE = -v -D_RTLDLL -DDEBUGGING | |
401 | LINK_DBG = -v | |
402 | .ELSE | |
403 | OPTIMIZE = -O2 -D_RTLDLL | |
404 | LINK_DBG = | |
405 | .ENDIF | |
406 | ||
bb275e72 | 407 | EXTRACFLAGS = |
1e71036e JH |
408 | CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \ |
409 | $(PCHFLAGS) $(OPTIMIZE) | |
8169a885 SH |
410 | LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \ |
411 | -L"$(CCLIBDIR)\PSDK" | |
1e71036e JH |
412 | OBJOUT_FLAG = -o |
413 | EXEOUT_FLAG = -e | |
414 | LIBOUT_FLAG = | |
415 | .IF "$(BCCOLD)" != "define" | |
416 | LINK_FLAGS += -Gn | |
417 | DEFINES += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410 | |
418 | .END | |
419 | .IF "$(BCCVCL)" == "define" | |
420 | LIBC = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib | |
421 | LINK_FLAGS += -L"$(CCLIBDIR)\Release" | |
422 | .END | |
423 | ||
424 | ||
425 | .ELIF "$(CCTYPE)" == "GCC" | |
426 | ||
427 | CC = gcc | |
510ac311 | 428 | LINK32 = g++ |
1e71036e JH |
429 | LIB32 = ar rc |
430 | IMPLIB = dlltool | |
986f8adc | 431 | RSC = windres |
1e71036e JH |
432 | |
433 | i = .i | |
434 | o = .o | |
435 | a = .a | |
436 | ||
437 | # | |
438 | # Options | |
439 | # | |
440 | ||
441 | INCLUDES = -I.\include -I. -I.. -I$(COREDIR) | |
442 | DEFINES = -DWIN32 $(CRYPT_FLAG) | |
443 | LOCDEFS = -DPERLDLL -DPERL_CORE | |
444 | SUBSYS = console | |
445 | CXX_FLAG = -xc++ | |
446 | ||
447 | LIBC = -lmsvcrt | |
448 | ||
449 | # same libs as MSVC | |
450 | LIBFILES = $(CRYPT_LIB) $(LIBC) \ | |
451 | -lmoldname -lkernel32 -luser32 -lgdi32 \ | |
452 | -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \ | |
036c1c1e | 453 | -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \ |
8169a885 | 454 | -lwinmm -lversion -lodbc32 -lodbccp32 |
1e71036e JH |
455 | |
456 | .IF "$(CFG)" == "Debug" | |
457 | OPTIMIZE = -g -O2 -DDEBUGGING | |
458 | LINK_DBG = -g | |
459 | .ELSE | |
ec25c072 SH |
460 | OPTIMIZE = -s -O2 |
461 | LINK_DBG = -s | |
1e71036e JH |
462 | .ENDIF |
463 | ||
bb275e72 | 464 | EXTRACFLAGS = |
1e71036e JH |
465 | CFLAGS = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE) |
466 | LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" | |
467 | OBJOUT_FLAG = -o | |
468 | EXEOUT_FLAG = -o | |
469 | LIBOUT_FLAG = | |
470 | ||
471 | # NOTE: we assume that GCC uses MSVCRT.DLL | |
472 | BUILDOPT += -fno-strict-aliasing -DPERL_MSVCRT_READFIX | |
473 | ||
474 | .ELSE | |
475 | ||
476 | CC = cl | |
477 | LINK32 = link | |
478 | LIB32 = $(LINK32) -lib | |
479 | RSC = rc | |
480 | ||
481 | # | |
482 | # Options | |
483 | # | |
484 | ||
485 | INCLUDES = -I$(COREDIR) -I.\include -I. -I.. | |
486 | #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX | |
487 | DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG) | |
488 | LOCDEFS = -DPERLDLL -DPERL_CORE | |
489 | SUBSYS = console | |
490 | CXX_FLAG = -TP -GX | |
491 | ||
492 | .IF "$(USE_PERLCRT)" != "define" | |
493 | LIBC = msvcrt.lib | |
494 | .ELSE | |
495 | LIBC = PerlCRT.lib | |
496 | .ENDIF | |
497 | ||
1e71036e JH |
498 | .IF "$(CFG)" == "Debug" |
499 | .IF "$(CCTYPE)" == "MSVC20" | |
500 | OPTIMIZE = -Od -MD -Z7 -DDEBUGGING | |
1e71036e | 501 | .ELSE |
c623ac67 | 502 | OPTIMIZE = -O1 -MD -Zi -DDEBUGGING |
1e71036e | 503 | .ENDIF |
c623ac67 | 504 | LINK_DBG = -debug |
1e71036e | 505 | .ELSE |
ec25c072 SH |
506 | OPTIMIZE = -MD -Zi -DNDEBUG |
507 | # we enable debug symbols in release builds also | |
508 | LINK_DBG = -debug -opt:ref,icf | |
509 | # you may want to enable this if you want COFF symbols in the executables | |
510 | # in addition to the PDB symbols. The default Dr. Watson that ships with | |
511 | # Windows can use the the former but not latter. The free WinDbg can be | |
512 | # installed to get better stack traces from just the PDB symbols, so we | |
513 | # avoid the bloat of COFF symbols by default. | |
514 | #LINK_DBG = $(LINK_DBG) -debugtype:both | |
d921a5fb GS |
515 | .IF "$(WIN64)" == "define" |
516 | # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG) | |
517 | OPTIMIZE += -Ox -GL | |
518 | LINK_DBG += -ltcg | |
1e71036e | 519 | .ELSE |
d921a5fb GS |
520 | # -O1 yields smaller code, which turns out to be faster than -O2 on x86 |
521 | OPTIMIZE += -O1 | |
522 | #OPTIMIZE += -O2 | |
1e71036e | 523 | .ENDIF |
1e71036e JH |
524 | .ENDIF |
525 | ||
c623ac67 GS |
526 | .IF "$(WIN64)" == "define" |
527 | DEFINES += -DWIN64 -DCONSERVATIVE | |
528 | OPTIMIZE += -Wp64 -Op | |
529 | .ENDIF | |
530 | ||
da2c7419 SH |
531 | # the string-pooling option -Gf is deprecated in VC++ 7.x and will be removed |
532 | # in later versions, so use read-only string-pooling (-GF) instead | |
533 | .IF "$(CCTYPE)" == "MSVC70FREE" || "$(CCTYPE)" == "MSVC70" | |
534 | STRPOOL = -GF | |
535 | .ELSE | |
536 | STRPOOL = -Gf | |
537 | .ENDIF | |
538 | ||
c623ac67 GS |
539 | .IF "$(USE_PERLCRT)" != "define" |
540 | BUILDOPT += -DPERL_MSVCRT_READFIX | |
541 | .ENDIF | |
542 | ||
1e71036e JH |
543 | LIBBASEFILES = $(CRYPT_LIB) \ |
544 | oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \ | |
545 | comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \ | |
036c1c1e | 546 | netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \ |
c623ac67 GS |
547 | version.lib |
548 | ||
549 | # win64 doesn't have some libs | |
550 | .IF "$(WIN64)" != "define" | |
551 | LIBBASEFILES += odbc32.lib odbccp32.lib | |
552 | .ENDIF | |
1e71036e JH |
553 | |
554 | # we add LIBC here, since we may be using PerlCRT.dll | |
555 | LIBFILES = $(LIBBASEFILES) $(LIBC) | |
556 | ||
bb275e72 SH |
557 | EXTRACFLAGS = -nologo $(STRPOOL) -W3 |
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) | |
563 | OBJOUT_FLAG = -Fo | |
564 | EXEOUT_FLAG = -Fe | |
565 | LIBOUT_FLAG = /out: | |
566 | ||
1e71036e JH |
567 | .ENDIF |
568 | ||
1e71036e JH |
569 | CFLAGS_O = $(CFLAGS) $(BUILDOPT) |
570 | ||
571 | # used to allow local linking flags that are not propogated into Config.pm, | |
572 | # currently unused | |
573 | # -- BKS, 12-12-1999 | |
574 | PRIV_LINK_FLAGS *= | |
575 | BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS) | |
576 | ||
577 | #################### do not edit below this line ####################### | |
578 | ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ############## | |
579 | ||
66e09d83 SH |
580 | # Some dmake's built with Borland C++, including Sarathy's one at: |
581 | # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip | |
582 | # require backslashes to be doubled-up when written to $(mktmp) files. | |
583 | # Other dmake's do not require this and would actually output a double | |
584 | # backslash if they were doubled-up. | |
e54e7e92 | 585 | .IF "$(shell @type $(mktmp \\))"=="\\" |
66e09d83 SH |
586 | B=\\ |
587 | .ELSE | |
588 | B=\\\ | |
589 | .ENDIF | |
590 | ||
e54e7e92 SH |
591 | # There is a related issue with other escape sequences: Sarathy's old |
592 | # dmake automatically maps escape sequences like \n to their ASCII values | |
593 | # when used in macros, while other dmake's only do so if this behaviour | |
594 | # is explicitly requested with the :m modifier. | |
595 | DONTUSETHIS=\n | |
596 | .IF "$(shell @type $(mktmp \n))"=="\n" | |
597 | N=$(DONTUSETHIS:m) | |
598 | .ELSE | |
599 | N=$(DONTUSETHIS) | |
600 | .ENDIF | |
601 | ||
1e71036e JH |
602 | o *= .obj |
603 | a *= .lib | |
604 | ||
605 | LKPRE = INPUT ( | |
606 | LKPOST = ) | |
607 | ||
608 | # | |
609 | # Rules | |
610 | # | |
611 | ||
612 | .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res | |
613 | ||
614 | .c$(o): | |
615 | $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $< | |
616 | ||
617 | .c.i: | |
618 | $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@ | |
619 | ||
620 | .y.c: | |
621 | $(NOOP) | |
622 | ||
623 | $(o).dll: | |
624 | .IF "$(CCTYPE)" == "BORLAND" | |
625 | $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def | |
626 | $(IMPLIB) $(*B).lib $@ | |
627 | .ELIF "$(CCTYPE)" == "GCC" | |
628 | $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES) | |
629 | $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@ | |
630 | .ELSE | |
631 | $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \ | |
632 | -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL) | |
633 | .ENDIF | |
634 | ||
635 | .rc.res: | |
770c139a GM |
636 | .IF "$(CCTYPE)" == "GCC" |
637 | $(RSC) --use-temp-file -i $< -o $@ | |
638 | .ELSE | |
639 | $(RSC) -i.. $< | |
640 | .ENDIF | |
1e71036e JH |
641 | |
642 | # | |
643 | # various targets | |
644 | MINIPERL = ..\miniperl.exe | |
645 | MINIDIR = .\mini | |
646 | PERLEXE = ..\perl.exe | |
647 | WPERLEXE = ..\wperl.exe | |
648 | GLOBEXE = ..\perlglob.exe | |
2d9d8159 | 649 | CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl |
1e71036e JH |
650 | MINIMOD = ..\lib\ExtUtils\Miniperl.pm |
651 | X2P = ..\x2p\a2p.exe | |
652 | ||
ca12659b NC |
653 | # Unicode data files generated by mktables |
654 | UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \ | |
655 | ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \ | |
7ebf06b3 NC |
656 | ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \ |
657 | ..\lib\unicore\PVA.pl | |
ca12659b NC |
658 | |
659 | # Directories of Unicode data files generated by mktables | |
27a8011f SH |
660 | UNIDATADIR1 = ..\lib\unicore\To |
661 | UNIDATADIR2 = ..\lib\unicore\lib | |
ca12659b | 662 | |
3890b58f RGS |
663 | PERLEXE_ICO = .\perlexe.ico |
664 | PERLEXE_RES = .\perlexe.res | |
665 | PERLDLL_RES = | |
666 | ||
1e71036e JH |
667 | # Nominate a target which causes extensions to be re-built |
668 | # This used to be $(PERLEXE), but at worst it is the .dll that they depend | |
669 | # on and really only the interface - i.e. the .def file used to export symbols | |
670 | # from the .dll | |
671 | PERLDEP = perldll.def | |
672 | ||
673 | ||
674 | PL2BAT = bin\pl2bat.pl | |
675 | GLOBBAT = bin\perlglob.bat | |
676 | ||
677 | UTILS = \ | |
678 | ..\utils\h2ph \ | |
679 | ..\utils\splain \ | |
680 | ..\utils\dprofpp \ | |
681 | ..\utils\perlbug \ | |
682 | ..\utils\pl2pm \ | |
683 | ..\utils\c2ph \ | |
827a599d | 684 | ..\utils\pstruct \ |
1e71036e JH |
685 | ..\utils\h2xs \ |
686 | ..\utils\perldoc \ | |
687 | ..\utils\perlcc \ | |
688 | ..\utils\perlivp \ | |
689 | ..\utils\libnetcfg \ | |
827a599d GS |
690 | ..\utils\enc2xs \ |
691 | ..\utils\piconv \ | |
18a1cebe | 692 | ..\utils\corelist \ |
83cd6e83 | 693 | ..\utils\cpan \ |
ea0e987d | 694 | ..\utils\xsubpp \ |
4b618757 | 695 | ..\utils\prove \ |
291d3373 | 696 | ..\utils\ptar \ |
3ddf9550 | 697 | ..\utils\shasum \ |
ea0e987d | 698 | ..\utils\instmodsh \ |
1e71036e JH |
699 | ..\pod\checkpods \ |
700 | ..\pod\pod2html \ | |
701 | ..\pod\pod2latex \ | |
702 | ..\pod\pod2man \ | |
703 | ..\pod\pod2text \ | |
704 | ..\pod\pod2usage \ | |
705 | ..\pod\podchecker \ | |
706 | ..\pod\podselect \ | |
707 | ..\x2p\find2perl \ | |
827a599d | 708 | ..\x2p\psed \ |
1e71036e | 709 | ..\x2p\s2p \ |
1e71036e JH |
710 | bin\exetype.pl \ |
711 | bin\runperl.pl \ | |
712 | bin\pl2bat.pl \ | |
713 | bin\perlglob.pl \ | |
714 | bin\search.pl | |
715 | ||
716 | .IF "$(CCTYPE)" == "BORLAND" | |
717 | ||
718 | CFGSH_TMPL = config.bc | |
719 | CFGH_TMPL = config_H.bc | |
720 | ||
721 | .ELIF "$(CCTYPE)" == "GCC" | |
722 | ||
723 | CFGSH_TMPL = config.gc | |
724 | CFGH_TMPL = config_H.gc | |
78a7c709 | 725 | PERLIMPLIB = ..\libperl59$(a) |
1e71036e JH |
726 | |
727 | .ELSE | |
728 | ||
c623ac67 GS |
729 | .IF "$(WIN64)" == "define" |
730 | CFGSH_TMPL = config.vc64 | |
731 | CFGH_TMPL = config_H.vc64 | |
732 | .ELSE | |
1e71036e JH |
733 | CFGSH_TMPL = config.vc |
734 | CFGH_TMPL = config_H.vc | |
c623ac67 | 735 | .ENDIF |
1e71036e JH |
736 | |
737 | .ENDIF | |
738 | ||
739 | # makedef.pl must be updated if this changes, and this should normally | |
740 | # only change when there is an incompatible revision of the public API. | |
78a7c709 HS |
741 | PERLIMPLIB *= ..\perl59$(a) |
742 | PERLDLL = ..\perl59.dll | |
1e71036e JH |
743 | |
744 | XCOPY = xcopy /f /r /i /d | |
745 | RCOPY = xcopy /f /r /i /e /d | |
65980d94 | 746 | NOOP = @rem |
1e71036e JH |
747 | |
748 | # | |
749 | # filenames given to xsubpp must have forward slashes (since it puts | |
750 | # full pathnames in #line strings) | |
751 | XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \ | |
752 | -C++ -prototypes | |
753 | ||
754 | MICROCORE_SRC = \ | |
755 | ..\av.c \ | |
756 | ..\deb.c \ | |
757 | ..\doio.c \ | |
758 | ..\doop.c \ | |
759 | ..\dump.c \ | |
760 | ..\globals.c \ | |
761 | ..\gv.c \ | |
762 | ..\hv.c \ | |
763 | ..\locale.c \ | |
a0d89a74 | 764 | ..\mathoms.c \ |
1e71036e JH |
765 | ..\mg.c \ |
766 | ..\numeric.c \ | |
767 | ..\op.c \ | |
ff6de8cd | 768 | ..\pad.c \ |
1e71036e JH |
769 | ..\perl.c \ |
770 | ..\perlapi.c \ | |
771 | ..\perly.c \ | |
772 | ..\pp.c \ | |
773 | ..\pp_ctl.c \ | |
774 | ..\pp_hot.c \ | |
775 | ..\pp_pack.c \ | |
84d4ea48 | 776 | ..\pp_sort.c \ |
1e71036e | 777 | ..\pp_sys.c \ |
10bc17b6 | 778 | ..\reentr.c \ |
1e71036e JH |
779 | ..\regcomp.c \ |
780 | ..\regexec.c \ | |
781 | ..\run.c \ | |
782 | ..\scope.c \ | |
783 | ..\sv.c \ | |
784 | ..\taint.c \ | |
785 | ..\toke.c \ | |
786 | ..\universal.c \ | |
787 | ..\utf8.c \ | |
788 | ..\util.c \ | |
789 | ..\xsutils.c | |
790 | ||
791 | EXTRACORE_SRC += perllib.c | |
792 | ||
793 | .IF "$(PERL_MALLOC)" == "define" | |
794 | EXTRACORE_SRC += ..\malloc.c | |
795 | .ENDIF | |
796 | ||
1e71036e | 797 | EXTRACORE_SRC += ..\perlio.c |
1e71036e JH |
798 | |
799 | WIN32_SRC = \ | |
800 | .\win32.c \ | |
1e71036e JH |
801 | .\win32sck.c \ |
802 | .\win32thread.c | |
803 | ||
b6d604f4 NIS |
804 | # We need this for miniperl build unless we override canned |
805 | # config.h #define building mini\* | |
806 | #.IF "$(USE_PERLIO)" == "define" | |
6ea0e807 | 807 | WIN32_SRC += .\win32io.c |
b6d604f4 | 808 | #.ENDIF |
6ea0e807 | 809 | |
1e71036e JH |
810 | .IF "$(CRYPT_SRC)" != "" |
811 | WIN32_SRC += .\$(CRYPT_SRC) | |
812 | .ENDIF | |
813 | ||
814 | DLL_SRC = $(DYNALOADER).c | |
815 | ||
816 | X2P_SRC = \ | |
817 | ..\x2p\a2p.c \ | |
818 | ..\x2p\hash.c \ | |
819 | ..\x2p\str.c \ | |
820 | ..\x2p\util.c \ | |
821 | ..\x2p\walk.c | |
822 | ||
823 | CORE_NOCFG_H = \ | |
824 | ..\av.h \ | |
825 | ..\cop.h \ | |
826 | ..\cv.h \ | |
827 | ..\dosish.h \ | |
828 | ..\embed.h \ | |
829 | ..\form.h \ | |
830 | ..\gv.h \ | |
831 | ..\handy.h \ | |
832 | ..\hv.h \ | |
833 | ..\iperlsys.h \ | |
834 | ..\mg.h \ | |
835 | ..\nostdio.h \ | |
836 | ..\op.h \ | |
837 | ..\opcode.h \ | |
838 | ..\perl.h \ | |
839 | ..\perlapi.h \ | |
840 | ..\perlsdio.h \ | |
841 | ..\perlsfio.h \ | |
842 | ..\perly.h \ | |
843 | ..\pp.h \ | |
844 | ..\proto.h \ | |
cdb0f547 | 845 | ..\regcomp.h \ |
1e71036e JH |
846 | ..\regexp.h \ |
847 | ..\scope.h \ | |
848 | ..\sv.h \ | |
849 | ..\thread.h \ | |
850 | ..\unixish.h \ | |
851 | ..\utf8.h \ | |
852 | ..\util.h \ | |
853 | ..\warnings.h \ | |
854 | ..\XSUB.h \ | |
855 | ..\EXTERN.h \ | |
856 | ..\perlvars.h \ | |
857 | ..\intrpvar.h \ | |
858 | ..\thrdvar.h \ | |
859 | .\include\dirent.h \ | |
860 | .\include\netdb.h \ | |
861 | .\include\sys\socket.h \ | |
862 | .\win32.h | |
863 | ||
864 | CORE_H = $(CORE_NOCFG_H) .\config.h | |
865 | ||
866 | MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o)) | |
867 | CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o)) | |
868 | WIN32_OBJ = $(WIN32_SRC:db:+$(o)) | |
869 | MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)} | |
ba14dd9a | 870 | MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)} |
1e71036e JH |
871 | MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ) |
872 | DLL_OBJ = $(DLL_SRC:db:+$(o)) | |
873 | X2P_OBJ = $(X2P_SRC:db:+$(o)) | |
874 | ||
875 | PERLDLL_OBJ = $(CORE_OBJ) | |
876 | PERLEXE_OBJ = perlmain$(o) | |
877 | ||
878 | PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ) | |
879 | ||
880 | .IF "$(USE_SETARGV)" != "" | |
881 | SETARGV_OBJ = setargv$(o) | |
882 | .ENDIF | |
883 | ||
884 | DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \ | |
885 | Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \ | |
886 | Sys/Hostname Storable Filter/Util/Call Encode \ | |
59717686 | 887 | Digest/MD5 Digest/SHA PerlIO/scalar MIME/Base64 Time/HiRes \ |
059b2413 | 888 | Unicode/Normalize Math/BigInt/FastCalc Compress/Zlib Win32 |
3fd041e4 | 889 | STATIC_EXT = |
1e71036e JH |
890 | NONXS_EXT = Errno |
891 | ||
892 | DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader | |
893 | ||
894 | POD2HTML = $(PODDIR)\pod2html | |
895 | POD2MAN = $(PODDIR)\pod2man | |
896 | POD2LATEX = $(PODDIR)\pod2latex | |
897 | POD2TEXT = $(PODDIR)\pod2text | |
898 | ||
899 | # vars must be separated by "\t+~\t+", since we're using the tempfile | |
900 | # version of config_sh.pl (we were overflowing someone's buffer by | |
901 | # trying to fit them all on the command line) | |
902 | # -- BKS 10-17-1999 | |
903 | CFG_VARS = \ | |
904 | INST_DRV=$(INST_DRV) ~ \ | |
66e09d83 SH |
905 | INST_TOP=$(INST_TOP:s,\,$B,) ~ \ |
906 | INST_VER=$(INST_VER:s,\,$B,) ~ \ | |
1e71036e JH |
907 | INST_ARCH=$(INST_ARCH) ~ \ |
908 | archname=$(ARCHNAME) ~ \ | |
909 | cc=$(CC) ~ \ | |
910 | ld=$(LINK32) ~ \ | |
bb275e72 | 911 | ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \ |
1e71036e JH |
912 | cf_email=$(EMAIL) ~ \ |
913 | d_crypt=$(D_CRYPT) ~ \ | |
914 | d_mymalloc=$(PERL_MALLOC) ~ \ | |
915 | libs=$(LIBFILES:f) ~ \ | |
66e09d83 | 916 | incpath=$(CCINCDIR:s,\,$B,) ~ \ |
1e71036e | 917 | libperl=$(PERLIMPLIB:f) ~ \ |
66e09d83 | 918 | libpth=$(CCLIBDIR:s,\,$B,);$(EXTRALIBDIRS:s,\,$B,) ~ \ |
1e71036e JH |
919 | libc=$(LIBC) ~ \ |
920 | make=dmake ~ \ | |
84c322f7 MB |
921 | _o=$(o) ~ \ |
922 | obj_ext=$(o) ~ \ | |
923 | _a=$(a) ~ \ | |
924 | lib_ext=$(a) ~ \ | |
1e71036e | 925 | static_ext=$(STATIC_EXT) ~ \ |
7e0017d3 | 926 | usethreads=$(USE_ITHREADS) ~ \ |
1e71036e | 927 | useithreads=$(USE_ITHREADS) ~ \ |
1e71036e JH |
928 | usemultiplicity=$(USE_MULTI) ~ \ |
929 | useperlio=$(USE_PERLIO) ~ \ | |
c7dd62f6 | 930 | uselargefiles=$(USE_LARGE_FILES) ~ \ |
7ada00a0 | 931 | usesitecustomize=$(USE_SITECUST) ~ \ |
66e09d83 | 932 | LINK_FLAGS=$(LINK_FLAGS:s,\,$B,) ~ \ |
1e71036e JH |
933 | optimize=$(OPTIMIZE) |
934 | ||
935 | # | |
936 | # set up targets varying between Win95 and WinNT builds | |
937 | # | |
938 | ||
939 | .IF "$(IS_WIN95)" == "define" | |
940 | MK2 = .\makefile.95 | |
941 | RIGHTMAKE = __switch_makefiles | |
1e71036e JH |
942 | .ELSE |
943 | MK2 = __not_needed | |
944 | RIGHTMAKE = | |
945 | .ENDIF | |
946 | ||
8169a885 SH |
947 | .IMPORT .IGNORE : SystemRoot windir |
948 | ||
949 | # Don't just .IMPORT OS from the environment because dmake sets OS itself. | |
950 | ENV_OS=$(subst,OS=, $(shell @set OS)) | |
951 | ||
952 | .IF "$(ENV_OS)" == "Windows_NT" | |
953 | ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll | |
954 | .ELSE | |
955 | ODBCCP32_DLL = $(windir)\system\odbccp32.dll | |
956 | .ENDIF | |
957 | ||
1e71036e JH |
958 | # |
959 | # Top targets | |
960 | # | |
961 | ||
962 | all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \ | |
ca12659b | 963 | $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \ |
ba14dd9a | 964 | $(X2P) Extensions |
1e71036e JH |
965 | |
966 | $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c | |
967 | ||
968 | #---------------------------------------------------------------- | |
969 | ||
970 | #-------------------- BEGIN Win95 SPECIFIC ---------------------- | |
971 | ||
972 | # this target is a jump-off point for Win95 | |
973 | # 1. it switches to the Win95-specific makefile if it exists | |
974 | # (__do_switch_makefiles) | |
975 | # 2. it prints a message when the Win95-specific one finishes (__done) | |
976 | # 3. it then kills this makefile by trying to make __no_such_target | |
977 | ||
978 | __switch_makefiles: __do_switch_makefiles __done __no_such_target | |
979 | ||
980 | __do_switch_makefiles: | |
981 | .IF "$(NOTFIRST)" != "true" | |
982 | if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true | |
983 | .ELSE | |
984 | $(NOOP) | |
985 | .ENDIF | |
986 | ||
987 | .IF "$(NOTFIRST)" != "true" | |
988 | __done: | |
989 | @echo Build process complete. Ignore any errors after this message. | |
990 | @echo Run "dmake test" to test and "dmake install" to install | |
991 | ||
992 | .ELSE | |
993 | # dummy targets for Win95-specific makefile | |
994 | ||
995 | __done: | |
996 | $(NOOP) | |
997 | ||
998 | __no_such_target: | |
999 | $(NOOP) | |
1000 | ||
1001 | .ENDIF | |
1002 | ||
1003 | # This target is used to generate the new makefile (.\makefile.95) for Win95 | |
1004 | ||
1005 | .\makefile.95: .\makefile.mk | |
1006 | $(MINIPERL) genmk95.pl makefile.mk $(MK2) | |
1007 | ||
1008 | #--------------------- END Win95 SPECIFIC --------------------- | |
1009 | ||
1010 | # a blank target for when builds don't need to do certain things | |
1011 | # this target added for Win95 port but used to keep the WinNT port able to | |
1012 | # use this file | |
1013 | __not_needed: | |
1014 | $(NOOP) | |
1015 | ||
1016 | $(GLOBEXE) : perlglob$(o) | |
1017 | .IF "$(CCTYPE)" == "BORLAND" | |
1018 | $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c | |
1019 | $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \ | |
1020 | "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib, | |
1021 | .ELIF "$(CCTYPE)" == "GCC" | |
1022 | $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES) | |
1023 | .ELSE | |
1024 | $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \ | |
1025 | perlglob$(o) setargv$(o) | |
1026 | .ENDIF | |
1027 | ||
1028 | perlglob$(o) : perlglob.c | |
1029 | ||
1030 | config.w32 : $(CFGSH_TMPL) | |
1031 | copy $(CFGSH_TMPL) config.w32 | |
1032 | ||
1033 | .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H) | |
1034 | -del /f config.h | |
1035 | copy $(CFGH_TMPL) config.h | |
1036 | ||
1037 | ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm | |
1038 | $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \ | |
1039 | $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh | |
1040 | ||
1041 | # this target is for when changes to the main config.sh happen | |
1042 | # edit config.{b,v,g}c and make this target once for each supported | |
1043 | # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`) | |
1044 | regen_config_h: | |
1045 | perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \ | |
1046 | $(CFGSH_TMPL) > ..\config.sh | |
1047 | -cd .. && del /f perl.exe | |
1018e26f | 1048 | -cd .. && del /f perl*.dll |
1e71036e JH |
1049 | cd .. && perl configpm |
1050 | -del /f $(CFGH_TMPL) | |
1051 | -mkdir $(COREDIR) | |
1018e26f | 1052 | -perl config_h.PL "INST_VER=$(INST_VER)" |
1e71036e JH |
1053 | rename config.h $(CFGH_TMPL) |
1054 | ||
1055 | $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl | |
1056 | cd .. && miniperl configpm | |
1057 | if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL) | |
1058 | $(XCOPY) ..\*.h $(COREDIR)\*.* | |
1059 | $(XCOPY) *.h $(COREDIR)\*.* | |
1060 | $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.* | |
1061 | $(RCOPY) include $(COREDIR)\*.* | |
1062 | $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \ | |
1063 | || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE) | |
1064 | ||
1065 | $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS) | |
1066 | .IF "$(CCTYPE)" == "BORLAND" | |
8169a885 SH |
1067 | if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \ |
1068 | cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL) | |
1e71036e | 1069 | $(LINK32) -Tpe -ap $(BLINK_FLAGS) \ |
bfbbc0be | 1070 | @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),) |
1e71036e JH |
1071 | .ELIF "$(CCTYPE)" == "GCC" |
1072 | $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \ | |
bfbbc0be | 1073 | $(mktmp $(LKPRE) $(MINI_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST)) |
1e71036e JH |
1074 | .ELSE |
1075 | $(LINK32) -subsystem:console -out:$@ \ | |
bfbbc0be | 1076 | @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,$B,)) |
1e71036e JH |
1077 | .ENDIF |
1078 | ||
1079 | $(MINIDIR) : | |
1080 | if not exist "$(MINIDIR)" mkdir "$(MINIDIR)" | |
1081 | ||
1082 | $(MINICORE_OBJ) : $(CORE_NOCFG_H) | |
1083 | $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c | |
1084 | ||
1085 | $(MINIWIN32_OBJ) : $(CORE_NOCFG_H) | |
1086 | $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c | |
1087 | ||
1088 | # -DPERL_IMPLICIT_SYS needs C++ for perllib.c | |
1089 | # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless | |
1090 | # unless the .IF is true), so instead we use a .ELSE with the default. | |
1091 | # This is the only file that depends on perlhost.h, vmem.h, and vdir.h | |
1092 | ||
1093 | perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h | |
acfe0abc | 1094 | .IF "$(USE_IMP_SYS)" == "define" |
322fd642 | 1095 | $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c |
1e71036e | 1096 | .ELSE |
322fd642 | 1097 | $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c |
1e71036e JH |
1098 | .ENDIF |
1099 | ||
1100 | # 1. we don't want to rebuild miniperl.exe when config.h changes | |
1101 | # 2. we don't want to rebuild miniperl.exe with non-default config.h | |
1102 | $(MINI_OBJ) : $(CORE_NOCFG_H) | |
1103 | ||
1104 | $(WIN32_OBJ) : $(CORE_H) | |
9848074e | 1105 | |
1e71036e | 1106 | $(CORE_OBJ) : $(CORE_H) |
9848074e | 1107 | |
1e71036e | 1108 | $(DLL_OBJ) : $(CORE_H) |
9848074e | 1109 | |
1e71036e JH |
1110 | $(X2P_OBJ) : $(CORE_H) |
1111 | ||
1112 | perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl | |
3fd041e4 | 1113 | $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h |
1e71036e JH |
1114 | $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \ |
1115 | $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def | |
1116 | ||
d2b25974 | 1117 | $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static |
1e71036e JH |
1118 | .IF "$(CCTYPE)" == "BORLAND" |
1119 | $(LINK32) -Tpd -ap $(BLINK_FLAGS) \ | |
e54e7e92 SH |
1120 | @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,$B,)$N \ |
1121 | $@,$N \ | |
7a67865a | 1122 | $(subst,\,$B $(shell @type Extensions_static)) $(LIBFILES)$N \ |
e54e7e92 | 1123 | perldll.def$N) |
1e71036e JH |
1124 | $(IMPLIB) $*.lib $@ |
1125 | .ELIF "$(CCTYPE)" == "GCC" | |
1126 | $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \ | |
bfbbc0be | 1127 | $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \ |
7a67865a | 1128 | $(subst,\,$B $(shell @type Extensions_static)) \ |
3fd041e4 | 1129 | $(LIBFILES) $(LKPOST)) |
1e71036e JH |
1130 | dlltool --output-lib $(PERLIMPLIB) \ |
1131 | --dllname $(PERLDLL:b).dll \ | |
1132 | --def perldll.def \ | |
1133 | --base-file perl.base \ | |
1134 | --output-exp perl.exp | |
1135 | $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \ | |
bfbbc0be | 1136 | $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \ |
7a67865a | 1137 | $(subst,\,$B $(shell @type Extensions_static)) \ |
3fd041e4 | 1138 | $(LIBFILES) perl.exp $(LKPOST)) |
1e71036e JH |
1139 | .ELSE |
1140 | $(LINK32) -dll -def:perldll.def -out:$@ \ | |
9e7cf449 | 1141 | @Extensions_static \ |
8bcd5811 | 1142 | @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \ |
bfbbc0be | 1143 | $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,$B,)) |
1e71036e JH |
1144 | .ENDIF |
1145 | $(XCOPY) $(PERLIMPLIB) $(COREDIR) | |
1146 | ||
d2b25974 | 1147 | |
4fe8ccd6 | 1148 | $(PERLEXE_ICO): $(MINIPERL) makeico.pl |
e84ac4e2 SH |
1149 | $(MINIPERL) makeico.pl > $@ |
1150 | ||
4fe8ccd6 | 1151 | $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO) |
e84ac4e2 | 1152 | |
1e71036e JH |
1153 | $(MINIMOD) : $(MINIPERL) ..\minimod.pl |
1154 | cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm | |
1155 | ||
1156 | ..\x2p\a2p$(o) : ..\x2p\a2p.c | |
1157 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c | |
1158 | ||
1159 | ..\x2p\hash$(o) : ..\x2p\hash.c | |
1160 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c | |
1161 | ||
1162 | ..\x2p\str$(o) : ..\x2p\str.c | |
1163 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c | |
1164 | ||
1165 | ..\x2p\util$(o) : ..\x2p\util.c | |
1166 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c | |
1167 | ||
1168 | ..\x2p\walk$(o) : ..\x2p\walk.c | |
1169 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c | |
1170 | ||
1171 | $(X2P) : $(MINIPERL) $(X2P_OBJ) | |
1172 | $(MINIPERL) ..\x2p\find2perl.PL | |
1173 | $(MINIPERL) ..\x2p\s2p.PL | |
1174 | .IF "$(CCTYPE)" == "BORLAND" | |
1175 | $(LINK32) -Tpe -ap $(BLINK_FLAGS) \ | |
bfbbc0be | 1176 | @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),) |
1e71036e JH |
1177 | .ELIF "$(CCTYPE)" == "GCC" |
1178 | $(LINK32) -v -o $@ $(BLINK_FLAGS) \ | |
bfbbc0be | 1179 | $(mktmp $(LKPRE) $(X2P_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST)) |
1e71036e JH |
1180 | .ELSE |
1181 | $(LINK32) -subsystem:console -out:$@ \ | |
bfbbc0be | 1182 | @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,$B,)) |
1e71036e JH |
1183 | .ENDIF |
1184 | ||
1185 | perlmain.c : runperl.c | |
1186 | copy runperl.c perlmain.c | |
1187 | ||
1188 | perlmain$(o) : perlmain.c | |
1189 | $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c | |
1190 | ||
1191 | $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES) | |
1192 | .IF "$(CCTYPE)" == "BORLAND" | |
1193 | $(LINK32) -Tpe -ap $(BLINK_FLAGS) \ | |
e54e7e92 SH |
1194 | @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,$B,)$N \ |
1195 | $(@:s,\,$B,),$N \ | |
1196 | $(PERLIMPLIB) $(LIBFILES)$N) | |
1e71036e JH |
1197 | .ELIF "$(CCTYPE)" == "GCC" |
1198 | $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \ | |
1199 | $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES) | |
1200 | .ELSE | |
1201 | $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \ | |
1202 | $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES) | |
1203 | .ENDIF | |
1204 | copy $(PERLEXE) $(WPERLEXE) | |
1205 | $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS | |
1206 | copy splittree.pl .. | |
1207 | $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR) | |
1208 | ||
1209 | $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM) | |
1210 | if not exist $(AUTODIR) mkdir $(AUTODIR) | |
1211 | cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL | |
1212 | cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL | |
1213 | $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL) | |
1214 | $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL) | |
1215 | cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c | |
1216 | $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c . | |
1217 | ||
1218 | $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs | |
1219 | copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs | |
1220 | ||
9dcb9602 | 1221 | #------------------------------------------------------------------------------- |
ba14dd9a | 1222 | Extensions : buildext.pl $(PERLDEP) $(CONFIGPM) |
d2b25974 VK |
1223 | $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic |
1224 | $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic | |
1225 | ||
8bcd5811 | 1226 | Extensions_static : buildext.pl |
d2b25974 | 1227 | $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static |
9e7cf449 VK |
1228 | $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static |
1229 | $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static | |
1e71036e | 1230 | |
ba14dd9a | 1231 | Extensions_clean : |
1e71036e | 1232 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean |
b4ad57f4 | 1233 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean |
1e71036e | 1234 | |
b4dc1df6 SH |
1235 | Extensions_realclean : |
1236 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean | |
b4ad57f4 | 1237 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean |
b4dc1df6 | 1238 | |
9dcb9602 | 1239 | #------------------------------------------------------------------------------- |
1e71036e JH |
1240 | |
1241 | ||
1242 | doc: $(PERLEXE) | |
1243 | $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \ | |
1244 | --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\ | |
1245 | --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse | |
1246 | ||
b0b6bf2b AT |
1247 | # Note that this next section is parsed (and regenerated) by pod/buildtoc |
1248 | # so please check that script before making structural changes here | |
1e71036e JH |
1249 | utils: $(PERLEXE) $(X2P) |
1250 | cd ..\utils && $(MAKE) PERL=$(MINIPERL) | |
1e71036e | 1251 | copy ..\vms\perlvms.pod ..\pod\perlvms.pod |
b0b6bf2b AT |
1252 | copy ..\README.aix ..\pod\perlaix.pod |
1253 | copy ..\README.amiga ..\pod\perlamiga.pod | |
1254 | copy ..\README.apollo ..\pod\perlapollo.pod | |
1255 | copy ..\README.beos ..\pod\perlbeos.pod | |
1256 | copy ..\README.bs2000 ..\pod\perlbs2000.pod | |
1257 | copy ..\README.ce ..\pod\perlce.pod | |
1258 | copy ..\README.cn ..\pod\perlcn.pod | |
1259 | copy ..\README.cygwin ..\pod\perlcygwin.pod | |
1260 | copy ..\README.dgux ..\pod\perldgux.pod | |
1261 | copy ..\README.dos ..\pod\perldos.pod | |
1262 | copy ..\README.epoc ..\pod\perlepoc.pod | |
1263 | copy ..\README.freebsd ..\pod\perlfreebsd.pod | |
1264 | copy ..\README.hpux ..\pod\perlhpux.pod | |
1265 | copy ..\README.hurd ..\pod\perlhurd.pod | |
1266 | copy ..\README.irix ..\pod\perlirix.pod | |
1267 | copy ..\README.jp ..\pod\perljp.pod | |
1268 | copy ..\README.ko ..\pod\perlko.pod | |
6477b319 | 1269 | copy ..\README.linux ..\pod\perllinux.pod |
b0b6bf2b AT |
1270 | copy ..\README.machten ..\pod\perlmachten.pod |
1271 | copy ..\README.macos ..\pod\perlmacos.pod | |
1272 | copy ..\README.macosx ..\pod\perlmacosx.pod | |
1273 | copy ..\README.mint ..\pod\perlmint.pod | |
1274 | copy ..\README.mpeix ..\pod\perlmpeix.pod | |
1275 | copy ..\README.netware ..\pod\perlnetware.pod | |
b0846812 | 1276 | copy ..\README.openbsd ..\pod\perlopenbsd.pod |
b0b6bf2b AT |
1277 | copy ..\README.os2 ..\pod\perlos2.pod |
1278 | copy ..\README.os390 ..\pod\perlos390.pod | |
1279 | copy ..\README.os400 ..\pod\perlos400.pod | |
1280 | copy ..\README.plan9 ..\pod\perlplan9.pod | |
1281 | copy ..\README.qnx ..\pod\perlqnx.pod | |
1282 | copy ..\README.solaris ..\pod\perlsolaris.pod | |
27da23d5 | 1283 | copy ..\README.symbian ..\pod\perlsymbian.pod |
b0b6bf2b AT |
1284 | copy ..\README.tru64 ..\pod\perltru64.pod |
1285 | copy ..\README.tw ..\pod\perltw.pod | |
1286 | copy ..\README.uts ..\pod\perluts.pod | |
1287 | copy ..\README.vmesa ..\pod\perlvmesa.pod | |
1288 | copy ..\README.vms ..\pod\perlvms.pod | |
1289 | copy ..\README.vos ..\pod\perlvos.pod | |
1290 | copy ..\README.win32 ..\pod\perlwin32.pod | |
496c75d0 | 1291 | copy ..\pod\perl593delta.pod ..\pod\perldelta.pod |
b0b6bf2b | 1292 | cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters |
1e71036e JH |
1293 | cd ..\lib && $(PERLEXE) lib_pm.PL |
1294 | $(PERLEXE) $(PL2BAT) $(UTILS) | |
1295 | ||
b0b6bf2b AT |
1296 | # Note that the pod cleanup in this next section is parsed (and regenerated |
1297 | # by pod/buildtoc so please check that script before making changes here | |
1298 | ||
27a8011f SH |
1299 | # the doubled rmdir calls are needed because older cmd shells |
1300 | # don't understand /q | |
b4dc1df6 | 1301 | distclean: realclean |
1e71036e JH |
1302 | -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \ |
1303 | $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) | |
1304 | -del /f *.def *.map | |
ca67812f | 1305 | -del /f $(DYNALOADER).c |
1e71036e | 1306 | -del /f $(EXTDIR)\DynaLoader\dl_win32.xs |
ca67812f SH |
1307 | -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm |
1308 | -del /f $(EXTDIR)\DynaLoader\XSLoader.pm | |
1309 | -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm | |
1310 | -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm | |
1e71036e | 1311 | -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm |
b4dc1df6 | 1312 | -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm |
1e71036e | 1313 | -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm |
a9bf183d | 1314 | -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm |
1e71036e JH |
1315 | -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm |
1316 | -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm | |
ca67812f | 1317 | -del /f $(LIBDIR)\ByteLoader.pm |
1e71036e | 1318 | -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm |
ca67812f | 1319 | -del /f $(LIBDIR)\Devel\PPPort.pm |
1e71036e JH |
1320 | -del /f $(LIBDIR)\File\Glob.pm |
1321 | -del /f $(LIBDIR)\Storable.pm | |
1e71036e | 1322 | -del /f $(LIBDIR)\Digest\MD5.pm |
59717686 | 1323 | -del /f $(LIBDIR)\Digest\SHA.pm |
ca67812f SH |
1324 | -del /f $(LIBDIR)\PerlIO\encoding.pm |
1325 | -del /f $(LIBDIR)\PerlIO\scalar.pm | |
1326 | -del /f $(LIBDIR)\PerlIO\via.pm | |
1327 | -del /f $(LIBDIR)\Sys\Hostname.pm | |
1328 | -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm | |
1329 | -del /f $(LIBDIR)\threads\shared.pm | |
1e71036e | 1330 | -del /f $(LIBDIR)\Time\HiRes.pm |
ac5ea531 | 1331 | -del /f $(LIBDIR)\Unicode\Normalize.pm |
4e74047c | 1332 | -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm |
b4ad57f4 | 1333 | -del /f $(LIBDIR)\Win32.pm |
a6c1bb3f SH |
1334 | -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket |
1335 | -if exist $(LIBDIR)\IO\Socket rmdir /s $(LIBDIR)\IO\Socket | |
522078af GS |
1336 | -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B |
1337 | -if exist $(LIBDIR)\B rmdir /s $(LIBDIR)\B | |
1338 | -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data | |
1339 | -if exist $(LIBDIR)\Data rmdir /s $(LIBDIR)\Data | |
ca67812f SH |
1340 | -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode |
1341 | -if exist $(LIBDIR)\Encode rmdir /s $(LIBDIR)\Encode | |
522078af GS |
1342 | -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util |
1343 | -if exist $(LIBDIR)\Filter\Util rmdir /s $(LIBDIR)\Filter\Util | |
522078af GS |
1344 | -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME |
1345 | -if exist $(LIBDIR)\MIME rmdir /s $(LIBDIR)\MIME | |
1346 | -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List | |
1347 | -if exist $(LIBDIR)\List rmdir /s $(LIBDIR)\List | |
1348 | -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar | |
1349 | -if exist $(LIBDIR)\Scalar rmdir /s $(LIBDIR)\Scalar | |
6c4b87ea SH |
1350 | -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys |
1351 | -if exist $(LIBDIR)\Sys rmdir /s $(LIBDIR)\Sys | |
1352 | -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads | |
1353 | -if exist $(LIBDIR)\threads rmdir /s $(LIBDIR)\threads | |
522078af GS |
1354 | -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS |
1355 | -if exist $(LIBDIR)\XS rmdir /s $(LIBDIR)\XS | |
1e71036e | 1356 | -cd $(PODDIR) && del /f *.html *.bat checkpods \ |
4cb44f92 JH |
1357 | perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \ |
1358 | perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \ | |
1400179b NC |
1359 | perldelta.pod perldgux.pod perldos.pod perlepoc.pod \ |
1360 | perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \ | |
6477b319 NC |
1361 | perljp.pod perlko.pod perllinux.pod perlmachten.pod \ |
1362 | perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \ | |
1363 | perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \ | |
1364 | perlos400.pod perlplan9.pod perlqnx.pod perlsolaris.pod \ | |
1365 | perlsymbian.pod perltru64.pod perltw.pod perluts.pod \ | |
1366 | perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod perlwin32.pod \ | |
4cb44f92 | 1367 | pod2html pod2latex pod2man pod2text pod2usage \ |
1e71036e | 1368 | podchecker podselect |
827a599d | 1369 | -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \ |
ea0e987d | 1370 | perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv cpan *.bat \ |
3ddf9550 | 1371 | xsubpp instmodsh prove ptar shasum corelist |
827a599d | 1372 | -cd ..\x2p && del /f find2perl s2p psed *.bat |
1e71036e JH |
1373 | -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new |
1374 | -del /f $(CONFIGPM) | |
1375 | -del /f bin\*.bat | |
d2b25974 | 1376 | -del /f perllibst.h |
ec25c072 | 1377 | -del /f $(PERLEXE_ICO) perl.base |
44ba898b | 1378 | -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib |
827a599d | 1379 | -cd $(EXTDIR) && del /s *.def Makefile Makefile.old |
522078af GS |
1380 | -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) |
1381 | -if exist $(AUTODIR) rmdir /s $(AUTODIR) | |
1382 | -if exist $(COREDIR) rmdir /s /q $(COREDIR) | |
1383 | -if exist $(COREDIR) rmdir /s $(COREDIR) | |
1e71036e JH |
1384 | |
1385 | install : all installbare installhtml | |
1386 | ||
1387 | installbare : $(RIGHTMAKE) utils | |
1388 | $(PERLEXE) ..\installperl | |
1389 | if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.* | |
1390 | $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.* | |
ec25c072 SH |
1391 | if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.* |
1392 | if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.* | |
1e71036e JH |
1393 | $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.* |
1394 | ||
1395 | installhtml : doc | |
1396 | $(RCOPY) html\*.* $(INST_HTML)\*.* | |
1397 | ||
1398 | inst_lib : $(CONFIGPM) | |
1399 | copy splittree.pl .. | |
1400 | $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR) | |
1401 | $(RCOPY) ..\lib $(INST_LIB)\*.* | |
1402 | ||
e99b0bf3 | 1403 | $(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables |
27a8011f SH |
1404 | cd ..\lib\unicore && \ |
1405 | ..\$(MINIPERL) -I.. mktables | |
ca12659b NC |
1406 | |
1407 | minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils | |
6c85d12e SH |
1408 | $(XCOPY) $(MINIPERL) ..\t\$(NULL) |
1409 | if exist ..\t\perl.exe del /f ..\t\perl.exe | |
1410 | rename ..\t\miniperl.exe perl.exe | |
1e71036e JH |
1411 | .IF "$(CCTYPE)" == "BORLAND" |
1412 | $(XCOPY) $(GLOBBAT) ..\t\$(NULL) | |
1413 | .ELSE | |
1414 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) | |
1415 | .ENDIF | |
1416 | attrib -r ..\t\*.* | |
1e71036e | 1417 | cd ..\t && \ |
6c85d12e | 1418 | $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t |
1e71036e JH |
1419 | |
1420 | test-prep : all utils | |
1421 | $(XCOPY) $(PERLEXE) ..\t\$(NULL) | |
1422 | $(XCOPY) $(PERLDLL) ..\t\$(NULL) | |
1423 | .IF "$(CCTYPE)" == "BORLAND" | |
1424 | $(XCOPY) $(GLOBBAT) ..\t\$(NULL) | |
1425 | .ELSE | |
1426 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) | |
1427 | .ENDIF | |
1428 | ||
1429 | test : $(RIGHTMAKE) test-prep | |
89087c85 | 1430 | cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) |
1e71036e JH |
1431 | |
1432 | test-notty : test-prep | |
1433 | set PERL_SKIP_TTY_TEST=1 && \ | |
89087c85 | 1434 | cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES) |
1e71036e | 1435 | |
b4a93add | 1436 | _test : $(RIGHTMAKE) |
a01cf021 JH |
1437 | $(XCOPY) $(PERLEXE) ..\t\$(NULL) |
1438 | $(XCOPY) $(PERLDLL) ..\t\$(NULL) | |
b4a93add | 1439 | .IF "$(CCTYPE)" == "BORLAND" |
a01cf021 | 1440 | $(XCOPY) $(GLOBBAT) ..\t\$(NULL) |
b4a93add | 1441 | .ELSE |
a01cf021 | 1442 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) |
b4a93add | 1443 | .ENDIF |
89087c85 | 1444 | cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) |
b4a93add | 1445 | |
27a8011f SH |
1446 | # the doubled rmdir calls are needed because older cmd shells |
1447 | # don't understand /q | |
b4dc1df6 | 1448 | _clean : |
1e71036e JH |
1449 | -@erase miniperlmain$(o) |
1450 | -@erase $(MINIPERL) | |
1451 | -@erase perlglob$(o) | |
1452 | -@erase perlmain$(o) | |
1453 | -@erase config.w32 | |
1454 | -@erase /f config.h | |
1455 | -@erase $(GLOBEXE) | |
1456 | -@erase $(PERLEXE) | |
1457 | -@erase $(WPERLEXE) | |
1458 | -@erase $(PERLDLL) | |
1459 | -@erase $(CORE_OBJ) | |
522078af GS |
1460 | -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) |
1461 | -if exist $(MINIDIR) rmdir /s $(MINIDIR) | |
27a8011f SH |
1462 | -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1) |
1463 | -if exist $(UNIDATADIR1) rmdir /s $(UNIDATADIR1) | |
1464 | -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2) | |
1465 | -if exist $(UNIDATADIR2) rmdir /s $(UNIDATADIR2) | |
ca12659b | 1466 | -@erase $(UNIDATAFILES) |
1e71036e JH |
1467 | -@erase $(WIN32_OBJ) |
1468 | -@erase $(DLL_OBJ) | |
1469 | -@erase $(X2P_OBJ) | |
1470 | -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res | |
1471 | -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat | |
1472 | -@erase ..\x2p\*.exe ..\x2p\*.bat | |
1473 | -@erase *.ilk | |
1474 | -@erase *.pdb | |
44ba898b | 1475 | -@erase *.tds |
9e7cf449 | 1476 | -@erase Extensions_static |
1e71036e | 1477 | |
b4dc1df6 SH |
1478 | clean : Extensions_clean _clean |
1479 | ||
1480 | realclean : Extensions_realclean _clean | |
1481 | ||
1e71036e JH |
1482 | # Handy way to run perlbug -ok without having to install and run the |
1483 | # installed perlbug. We don't re-run the tests here - we trust the user. | |
1484 | # Please *don't* use this unless all tests pass. | |
1485 | # If you want to report test failures, use "dmake nok" instead. | |
1486 | ok: utils | |
1487 | $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" | |
1488 | ||
1489 | okfile: utils | |
1490 | $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok | |
1491 | ||
1492 | nok: utils | |
1493 | $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" | |
1494 | ||
1495 | nokfile: utils | |
1496 | $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok |