Commit | Line | Data |
---|---|---|
9e42cd94 GS |
1 | # |
2 | # Makefile to build perl on Windows NT using Microsoft NMAKE. | |
3 | # Supported compilers: | |
c623ac67 GS |
4 | # Visual C++ 2.0 through 6.0 (and possibly newer versions) |
5 | # MS Platform SDK 64-bit compiler and tools **experimental** | |
9e42cd94 GS |
6 | # |
7 | # This is set up to build a perl.exe that runs off a shared library | |
78a7c709 | 8 | # (perl59.dll). Also makes individual DLLs for the XS extensions. |
9e42cd94 GS |
9 | # |
10 | ||
11 | ## | |
12 | ## Make sure you read README.win32 *before* you mess with anything here! | |
13 | ## | |
14 | ||
15 | ## | |
16 | ## Build configuration. Edit the values below to suit your needs. | |
17 | ## | |
18 | ||
19 | # | |
20 | # Set these to wherever you want "nmake install" to put your | |
21 | # newly built perl. | |
22 | # | |
23 | INST_DRV = c: | |
24 | INST_TOP = $(INST_DRV)\perl | |
25 | ||
26 | # | |
27 | # Comment this out if you DON'T want your perl installation to be versioned. | |
28 | # This means that the new installation will overwrite any files from the | |
29 | # old installation at the same INST_TOP location. Leaving it enabled is | |
30 | # the safest route, as perl adds the extra version directory to all the | |
31 | # locations it installs files to. If you disable it, an alternative | |
32 | # versioned installation can be obtained by setting INST_TOP above to a | |
33 | # path that includes an arbitrary version string. | |
34 | # | |
e01ffb8d | 35 | #INST_VER = \5.9.2 |
9e42cd94 GS |
36 | |
37 | # | |
38 | # Comment this out if you DON'T want your perl installation to have | |
39 | # architecture specific components. This means that architecture- | |
40 | # specific files will be installed along with the architecture-neutral | |
41 | # files. Leaving it enabled is safer and more flexible, in case you | |
42 | # want to build multiple flavors of perl and install them together in | |
43 | # the same location. Commenting it out gives you a simpler | |
44 | # installation that is easier to understand for beginners. | |
45 | # | |
46 | #INST_ARCH = \$(ARCHNAME) | |
47 | ||
48 | # | |
49 | # uncomment to enable multiple interpreters. This is need for fork() | |
f7d585d3 | 50 | # emulation and for thread support. |
9e42cd94 GS |
51 | # |
52 | USE_MULTI = define | |
53 | ||
54 | # | |
f7d585d3 | 55 | # Beginnings of interpreter cloning/threads; now reasonably complete. |
9e42cd94 GS |
56 | # This should be enabled to get the fork() emulation. This needs |
57 | # USE_MULTI as well. | |
58 | # | |
59 | USE_ITHREADS = define | |
60 | ||
61 | # | |
62 | # uncomment to enable the implicit "host" layer for all system calls | |
63 | # made by perl. This needs USE_MULTI above. This is also needed to | |
64 | # get fork(). | |
65 | # | |
66 | USE_IMP_SYS = define | |
67 | ||
68 | # | |
f7d585d3 GS |
69 | # Comment out next assign to disable perl's I/O subsystem and use compiler's |
70 | # stdio for IO - depending on your compiler vendor and run time library you may | |
71 | # then get a number of fails from make test i.e. bugs - complain to them not us ;-). | |
72 | # You will also be unable to take full advantage of perl5.8's support for multiple | |
73 | # encodings and may see lower IO performance. You have been warned. | |
9e42cd94 GS |
74 | USE_PERLIO = define |
75 | ||
76 | # | |
4a9d6100 GS |
77 | # Comment this out if you don't want to enable large file support for |
78 | # some reason. Should normally only be changed to maintain compatibility | |
79 | # with an older release of perl. | |
80 | USE_LARGE_FILES = define | |
81 | ||
82 | # | |
9e42cd94 GS |
83 | # uncomment one of the following lines if you are using either |
84 | # Visual C++ 2.x or Visual C++ 6.x (aka Visual Studio 98) | |
85 | # | |
86 | #CCTYPE = MSVC20 | |
4a9d6100 | 87 | CCTYPE = MSVC60 |
9e42cd94 GS |
88 | |
89 | # | |
90 | # uncomment next line if you want debug version of perl (big,slow) | |
f7d585d3 GS |
91 | # If not enabled, we automatically try to use maximum optimization |
92 | # with all compilers that are known to have a working optimizer. | |
9e42cd94 GS |
93 | # |
94 | #CFG = Debug | |
95 | ||
96 | # | |
97 | # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler. | |
98 | # It has patches that fix known bugs in older versions of MSVCRT.DLL. | |
99 | # This currently requires VC 5.0 with Service Pack 3 or later. | |
100 | # Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/ | |
101 | # and follow the directions in the package to install. | |
102 | # | |
103 | # Not recommended if you have VC 6.x and you're not running Windows 9x. | |
104 | # | |
105 | #USE_PERLCRT = define | |
106 | ||
107 | # | |
108 | # uncomment to enable linking with setargv.obj under the Visual C | |
109 | # compiler. Setting this options enables perl to expand wildcards in | |
110 | # arguments, but it may be harder to use alternate methods like | |
111 | # File::DosGlob that are more powerful. This option is supported only with | |
112 | # Visual C. | |
113 | # | |
114 | #USE_SETARGV = define | |
115 | ||
116 | # | |
4ace4afb SH |
117 | # if you want to have the crypt() builtin function implemented, leave this or |
118 | # CRYPT_LIB uncommented. The fcrypt.c file named here contains a suitable | |
119 | # version of des_fcrypt(). | |
9e42cd94 | 120 | # |
4ace4afb | 121 | CRYPT_SRC = fcrypt.c |
9e42cd94 GS |
122 | |
123 | # | |
124 | # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a | |
125 | # library, uncomment this, and make sure the library exists (see README.win32) | |
126 | # Specify the full pathname of the library. | |
127 | # | |
128 | #CRYPT_LIB = fcrypt.lib | |
129 | ||
130 | # | |
131 | # set this if you wish to use perl's malloc | |
132 | # WARNING: Turning this on/off WILL break binary compatibility with extensions | |
133 | # you may have compiled with/without it. Be prepared to recompile all | |
134 | # extensions if you change the default. Currently, this cannot be enabled | |
135 | # if you ask for USE_IMP_SYS above. | |
136 | # | |
137 | #PERL_MALLOC = define | |
138 | ||
139 | # | |
06c896bb SH |
140 | # set this to enable debugging mstats |
141 | # This must be enabled to use the Devel::Peek::mstat() function. This cannot | |
142 | # be enabled without PERL_MALLOC as well. | |
143 | # | |
144 | #DEBUG_MSTATS = define | |
145 | ||
146 | # | |
147 | # | |
9e42cd94 GS |
148 | # set the install locations of the compiler include/libraries |
149 | # Running VCVARS32.BAT is *required* when using Visual C. | |
150 | # Some versions of Visual C don't define MSVCDIR in the environment, | |
151 | # so you may have to set CCHOME explicitly (spaces in the path name should | |
152 | # not be quoted) | |
153 | # | |
154 | #CCHOME = f:\msvc20 | |
155 | CCHOME = $(MSVCDIR) | |
156 | CCINCDIR = $(CCHOME)\include | |
157 | CCLIBDIR = $(CCHOME)\lib | |
158 | ||
159 | # | |
160 | # Additional compiler flags can be specified here. | |
161 | # | |
162 | ||
163 | # | |
164 | # This should normally be disabled. Adding -DPERL_POLLUTE enables support | |
165 | # for old symbols by default, at the expense of extreme pollution. You most | |
166 | # probably just want to build modules that won't compile with | |
167 | # perl Makefile.PL POLLUTE=1 | |
168 | # instead of enabling this. Please report such modules to the respective | |
169 | # authors. | |
170 | # | |
171 | #BUILDOPT = $(BUILDOPT) -DPERL_POLLUTE | |
172 | ||
173 | # | |
174 | # This should normally be disabled. Enabling it will disable the File::Glob | |
175 | # implementation of CORE::glob. | |
176 | # | |
177 | #BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB | |
178 | ||
179 | # | |
180 | # This should normally be disabled. Enabling it causes perl to read scripts | |
181 | # in text mode (which is the 5.005 behavior) and will break ByteLoader. | |
182 | #BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS | |
183 | ||
184 | # | |
185 | # specify semicolon-separated list of extra directories that modules will | |
186 | # look for libraries (spaces in path names need not be quoted) | |
187 | # | |
188 | EXTRALIBDIRS = | |
189 | ||
190 | # | |
191 | # set this to your email address (perl will guess a value from | |
192 | # from your loginname and your hostname, which may not be right) | |
193 | # | |
194 | #EMAIL = | |
195 | ||
196 | ## | |
197 | ## Build configuration ends. | |
198 | ## | |
199 | ||
200 | ##################### CHANGE THESE ONLY IF YOU MUST ##################### | |
201 | ||
202 | !IF "$(CRYPT_SRC)$(CRYPT_LIB)" == "" | |
203 | D_CRYPT = undef | |
204 | !ELSE | |
205 | D_CRYPT = define | |
206 | CRYPT_FLAG = -DHAVE_DES_FCRYPT | |
207 | !ENDIF | |
208 | ||
646e33b6 SH |
209 | !IF "$(USE_IMP_SYS)" == "define" |
210 | PERL_MALLOC = undef | |
211 | DEBUG_MSTATS = undef | |
212 | !ENDIF | |
213 | ||
9e42cd94 GS |
214 | !IF "$(PERL_MALLOC)" == "" |
215 | PERL_MALLOC = undef | |
646e33b6 | 216 | DEBUG_MSTATS = undef |
06c896bb SH |
217 | !ENDIF |
218 | ||
219 | !IF "$(DEBUG_MSTATS)" == "" | |
646e33b6 | 220 | DEBUG_MSTATS = undef |
06c896bb SH |
221 | !ENDIF |
222 | ||
223 | !IF "$(DEBUG_MSTATS)" == "define" | |
646e33b6 | 224 | BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS |
9e42cd94 GS |
225 | !ENDIF |
226 | ||
227 | !IF "$(USE_MULTI)" == "" | |
228 | USE_MULTI = undef | |
229 | !ENDIF | |
230 | ||
231 | !IF "$(USE_ITHREADS)" == "" | |
232 | USE_ITHREADS = undef | |
233 | !ENDIF | |
234 | ||
235 | !IF "$(USE_IMP_SYS)" == "" | |
236 | USE_IMP_SYS = undef | |
237 | !ENDIF | |
238 | ||
239 | !IF "$(USE_PERLIO)" == "" | |
240 | USE_PERLIO = undef | |
241 | !ENDIF | |
242 | ||
4a9d6100 GS |
243 | !IF "$(USE_LARGE_FILES)" == "" |
244 | USE_LARGE_FILES = undef | |
245 | !ENDIF | |
246 | ||
9e42cd94 GS |
247 | !IF "$(USE_PERLCRT)" == "" |
248 | USE_PERLCRT = undef | |
249 | !ENDIF | |
250 | ||
3db8f154 | 251 | !IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef" |
9e42cd94 GS |
252 | USE_MULTI = define |
253 | !ENDIF | |
254 | ||
255 | !IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef" | |
256 | USE_MULTI = define | |
9e42cd94 GS |
257 | !ENDIF |
258 | ||
3db8f154 | 259 | !IF "$(USE_MULTI)" != "undef" |
9e42cd94 GS |
260 | BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT |
261 | !ENDIF | |
262 | ||
263 | !IF "$(USE_IMP_SYS)" != "undef" | |
264 | BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS | |
265 | !ENDIF | |
266 | ||
267 | !IF "$(PROCESSOR_ARCHITECTURE)" == "" | |
268 | PROCESSOR_ARCHITECTURE = x86 | |
269 | !ENDIF | |
270 | ||
c623ac67 GS |
271 | !IF "$(WIN64)" == "" |
272 | !IF "$(PROCESSOR_ARCHITEW6432)" != "" | |
273 | PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432) | |
274 | WIN64 = define | |
275 | !ELSE | |
276 | !IF "$(PROCESSOR_ARCHITECTURE)" == "IA64" | |
277 | WIN64 = define | |
278 | !ELSE | |
279 | WIN64 = undef | |
280 | !ENDIF | |
281 | !ENDIF | |
282 | !ENDIF | |
283 | ||
9e42cd94 GS |
284 | !IF "$(USE_MULTI)" == "define" |
285 | ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi | |
286 | !ELSE | |
287 | !IF "$(USE_PERLIO)" == "define" | |
288 | ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio | |
289 | !ELSE | |
290 | ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE) | |
291 | !ENDIF | |
292 | !ENDIF | |
9e42cd94 GS |
293 | |
294 | !IF "$(USE_PERLIO)" == "define" | |
295 | BUILDOPT = $(BUILDOPT) -DUSE_PERLIO | |
296 | !ENDIF | |
297 | ||
298 | !IF "$(USE_ITHREADS)" == "define" | |
299 | ARCHNAME = $(ARCHNAME)-thread | |
300 | !ENDIF | |
301 | ||
302 | # Visual Studio 98 specific | |
303 | !IF "$(CCTYPE)" == "MSVC60" | |
304 | ||
305 | # VC 6.0 can load the socket dll on demand. Makes the test suite | |
306 | # run in about 10% less time. | |
036c1c1e | 307 | DELAYLOAD = -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib |
9e42cd94 GS |
308 | !ENDIF |
309 | ||
310 | ARCHDIR = ..\lib\$(ARCHNAME) | |
311 | COREDIR = ..\lib\CORE | |
312 | AUTODIR = ..\lib\auto | |
313 | LIBDIR = ..\lib | |
314 | EXTDIR = ..\ext | |
315 | PODDIR = ..\pod | |
316 | EXTUTILSDIR = $(LIBDIR)\ExtUtils | |
317 | ||
318 | # | |
319 | INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin | |
320 | INST_BIN = $(INST_SCRIPT)$(INST_ARCH) | |
321 | INST_LIB = $(INST_TOP)$(INST_VER)\lib | |
322 | INST_ARCHLIB = $(INST_LIB)$(INST_ARCH) | |
323 | INST_COREDIR = $(INST_ARCHLIB)\CORE | |
324 | INST_POD = $(INST_LIB)\pod | |
325 | INST_HTML = $(INST_TOP)$(INST_VER)\html | |
326 | ||
327 | # | |
328 | # Programs to compile, build .lib files and link | |
329 | # | |
330 | ||
331 | CC = cl | |
332 | LINK32 = link | |
333 | LIB32 = $(LINK32) -lib | |
334 | RSC = rc | |
335 | ||
336 | # | |
337 | # Options | |
338 | # | |
339 | ||
340 | INCLUDES = -I$(COREDIR) -I.\include -I. -I.. | |
341 | #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX | |
342 | DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG) | |
343 | LOCDEFS = -DPERLDLL -DPERL_CORE | |
344 | SUBSYS = console | |
345 | CXX_FLAG = -TP -GX | |
346 | ||
347 | !IF "$(USE_PERLCRT)" != "define" | |
348 | LIBC = msvcrt.lib | |
349 | !ELSE | |
350 | LIBC = PerlCRT.lib | |
351 | !ENDIF | |
352 | ||
9e42cd94 GS |
353 | !IF "$(CFG)" == "Debug" |
354 | ! IF "$(CCTYPE)" == "MSVC20" | |
355 | OPTIMIZE = -Od -MD -Z7 -DDEBUGGING | |
356 | ! ELSE | |
357 | OPTIMIZE = -Od -MD -Zi -DDEBUGGING | |
358 | ! ENDIF | |
c623ac67 | 359 | LINK_DBG = -debug |
9e42cd94 | 360 | !ELSE |
ec25c072 SH |
361 | OPTIMIZE = -MD -Zi -DNDEBUG |
362 | # we enable debug symbols in release builds also | |
363 | LINK_DBG = -debug -opt:ref,icf | |
364 | # you may want to enable this if you want COFF symbols in the executables | |
365 | # in addition to the PDB symbols. The default Dr. Watson that ships with | |
366 | # Windows can use the the former but not latter. The free WinDbg can be | |
367 | # installed to get better stack traces from just the PDB symbols, so we | |
368 | # avoid the bloat of COFF symbols by default. | |
369 | #LINK_DBG = $(LINK_DBG) -debugtype:both | |
d921a5fb GS |
370 | ! IF "$(WIN64)" == "define" |
371 | # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG) | |
372 | OPTIMIZE = $(OPTIMIZE) -Ox -GL | |
373 | LINK_DBG = $(LINK_DBG) -ltcg | |
374 | ! ELSE | |
375 | # -O1 yields smaller code, which turns out to be faster than -O2 on x86 | |
376 | OPTIMIZE = $(OPTIMIZE) -O1 | |
377 | #OPTIMIZE = $(OPTIMIZE) -O2 | |
378 | ! ENDIF | |
9e42cd94 GS |
379 | !ENDIF |
380 | ||
c623ac67 GS |
381 | !IF "$(WIN64)" == "define" |
382 | DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE | |
383 | OPTIMIZE = $(OPTIMIZE) -Wp64 -Op | |
384 | !ENDIF | |
385 | ||
9e42cd94 GS |
386 | !IF "$(USE_PERLCRT)" != "define" |
387 | BUILDOPT = $(BUILDOPT) -DPERL_MSVCRT_READFIX | |
388 | !ENDIF | |
389 | ||
390 | LIBBASEFILES = $(CRYPT_LIB) \ | |
391 | oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \ | |
392 | comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \ | |
036c1c1e | 393 | netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \ |
c623ac67 GS |
394 | version.lib |
395 | ||
396 | # win64 doesn't have some libs | |
397 | !IF "$(WIN64)" != "define" | |
398 | LIBBASEFILES = $(LIBBASEFILES) odbc32.lib odbccp32.lib | |
399 | !ENDIF | |
9e42cd94 GS |
400 | |
401 | # we add LIBC here, since we may be using PerlCRT.dll | |
402 | LIBFILES = $(LIBBASEFILES) $(LIBC) | |
403 | ||
404 | CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \ | |
405 | $(PCHFLAGS) $(OPTIMIZE) | |
406 | LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \ | |
407 | -libpath:"$(INST_COREDIR)" \ | |
408 | -machine:$(PROCESSOR_ARCHITECTURE) | |
409 | OBJOUT_FLAG = -Fo | |
410 | EXEOUT_FLAG = -Fe | |
411 | ||
412 | CFLAGS_O = $(CFLAGS) $(BUILDOPT) | |
413 | ||
414 | #################### do not edit below this line ####################### | |
415 | ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ############## | |
416 | ||
417 | o = .obj | |
418 | ||
419 | # | |
420 | # Rules | |
421 | # | |
422 | ||
423 | .SUFFIXES : .c $(o) .dll .lib .exe .rc .res | |
424 | ||
425 | .c$(o): | |
426 | $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $< | |
427 | ||
428 | .y.c: | |
429 | $(NOOP) | |
430 | ||
431 | $(o).dll: | |
432 | $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \ | |
433 | -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL) | |
434 | ||
435 | .rc.res: | |
436 | $(RSC) -i.. $< | |
437 | ||
438 | # | |
439 | # various targets | |
440 | ||
441 | # makedef.pl must be updated if this changes, and this should normally | |
442 | # only change when there is an incompatible revision of the public API. | |
78a7c709 HS |
443 | PERLIMPLIB = ..\perl59.lib |
444 | PERLDLL = ..\perl59.dll | |
9e42cd94 GS |
445 | |
446 | MINIPERL = ..\miniperl.exe | |
447 | MINIDIR = .\mini | |
448 | PERLEXE = ..\perl.exe | |
449 | WPERLEXE = ..\wperl.exe | |
450 | GLOBEXE = ..\perlglob.exe | |
04bae4fb | 451 | CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl |
9e42cd94 GS |
452 | MINIMOD = ..\lib\ExtUtils\Miniperl.pm |
453 | X2P = ..\x2p\a2p.exe | |
454 | ||
ca12659b NC |
455 | # Unicode data files generated by mktables |
456 | UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \ | |
457 | ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \ | |
7ebf06b3 NC |
458 | ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \ |
459 | ..\lib\unicore\PVA.pl | |
ca12659b NC |
460 | |
461 | # Directories of Unicode data files generated by mktables | |
27a8011f SH |
462 | UNIDATADIR1 = ..\lib\unicore\To |
463 | UNIDATADIR2 = ..\lib\unicore\lib | |
ca12659b | 464 | |
3890b58f RGS |
465 | PERLEXE_ICO = .\perlexe.ico |
466 | PERLEXE_RES = .\perlexe.res | |
467 | PERLDLL_RES = | |
468 | ||
9e42cd94 GS |
469 | # Nominate a target which causes extensions to be re-built |
470 | # This used to be $(PERLEXE), but at worst it is the .dll that they depend | |
471 | # on and really only the interface - i.e. the .def file used to export symbols | |
472 | # from the .dll | |
473 | PERLDEP = perldll.def | |
474 | ||
475 | PL2BAT = bin\pl2bat.pl | |
476 | GLOBBAT = bin\perlglob.bat | |
477 | ||
478 | UTILS = \ | |
479 | ..\utils\h2ph \ | |
480 | ..\utils\splain \ | |
481 | ..\utils\dprofpp \ | |
482 | ..\utils\perlbug \ | |
483 | ..\utils\pl2pm \ | |
484 | ..\utils\c2ph \ | |
827a599d | 485 | ..\utils\pstruct \ |
9e42cd94 GS |
486 | ..\utils\h2xs \ |
487 | ..\utils\perldoc \ | |
488 | ..\utils\perlcc \ | |
489 | ..\utils\perlivp \ | |
490 | ..\utils\libnetcfg \ | |
827a599d GS |
491 | ..\utils\enc2xs \ |
492 | ..\utils\piconv \ | |
18a1cebe | 493 | ..\utils\corelist \ |
83cd6e83 | 494 | ..\utils\cpan \ |
ea0e987d | 495 | ..\utils\xsubpp \ |
4b618757 | 496 | ..\utils\prove \ |
ea0e987d | 497 | ..\utils\instmodsh \ |
9e42cd94 GS |
498 | ..\pod\checkpods \ |
499 | ..\pod\pod2html \ | |
500 | ..\pod\pod2latex \ | |
501 | ..\pod\pod2man \ | |
502 | ..\pod\pod2text \ | |
503 | ..\pod\pod2usage \ | |
504 | ..\pod\podchecker \ | |
505 | ..\pod\podselect \ | |
506 | ..\x2p\find2perl \ | |
827a599d | 507 | ..\x2p\psed \ |
9e42cd94 | 508 | ..\x2p\s2p \ |
9e42cd94 GS |
509 | bin\exetype.pl \ |
510 | bin\runperl.pl \ | |
511 | bin\pl2bat.pl \ | |
512 | bin\perlglob.pl \ | |
513 | bin\search.pl | |
514 | ||
515 | MAKE = nmake -nologo | |
516 | MAKE_BARE = nmake | |
517 | ||
c623ac67 GS |
518 | !IF "$(WIN64)" == "define" |
519 | CFGSH_TMPL = config.vc64 | |
520 | CFGH_TMPL = config_H.vc64 | |
521 | !ELSE | |
9e42cd94 GS |
522 | CFGSH_TMPL = config.vc |
523 | CFGH_TMPL = config_H.vc | |
c623ac67 | 524 | !ENDIF |
9e42cd94 GS |
525 | |
526 | XCOPY = xcopy /f /r /i /d | |
527 | RCOPY = xcopy /f /r /i /e /d | |
528 | NOOP = @echo | |
529 | NULL = | |
530 | ||
531 | DEL = del | |
532 | ||
533 | # | |
534 | # filenames given to xsubpp must have forward slashes (since it puts | |
535 | # full pathnames in #line strings) | |
536 | XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \ | |
537 | -C++ -prototypes | |
538 | ||
539 | MICROCORE_SRC = \ | |
540 | ..\av.c \ | |
541 | ..\deb.c \ | |
542 | ..\doio.c \ | |
543 | ..\doop.c \ | |
544 | ..\dump.c \ | |
545 | ..\globals.c \ | |
546 | ..\gv.c \ | |
547 | ..\hv.c \ | |
548 | ..\locale.c \ | |
549 | ..\mg.c \ | |
550 | ..\numeric.c \ | |
551 | ..\op.c \ | |
295f0f84 | 552 | ..\pad.c \ |
9e42cd94 GS |
553 | ..\perl.c \ |
554 | ..\perlapi.c \ | |
555 | ..\perly.c \ | |
556 | ..\pp.c \ | |
557 | ..\pp_ctl.c \ | |
558 | ..\pp_hot.c \ | |
559 | ..\pp_pack.c \ | |
560 | ..\pp_sort.c \ | |
561 | ..\pp_sys.c \ | |
10bc17b6 | 562 | ..\reentr.c \ |
9e42cd94 GS |
563 | ..\regcomp.c \ |
564 | ..\regexec.c \ | |
565 | ..\run.c \ | |
566 | ..\scope.c \ | |
567 | ..\sv.c \ | |
568 | ..\taint.c \ | |
569 | ..\toke.c \ | |
570 | ..\universal.c \ | |
571 | ..\utf8.c \ | |
572 | ..\util.c \ | |
573 | ..\xsutils.c | |
574 | ||
575 | EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c | |
576 | ||
577 | !IF "$(PERL_MALLOC)" == "define" | |
578 | EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c | |
579 | !ENDIF | |
580 | ||
581 | EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c | |
582 | ||
583 | WIN32_SRC = \ | |
584 | .\win32.c \ | |
585 | .\win32sck.c \ | |
586 | .\win32thread.c | |
587 | ||
f7d585d3 GS |
588 | # We need this for miniperl build unless we override canned |
589 | # config.h #define building mini\* | |
590 | #!IF "$(USE_PERLIO)" == "define" | |
9e42cd94 | 591 | WIN32_SRC = $(WIN32_SRC) .\win32io.c |
f7d585d3 | 592 | #!ENDIF |
9e42cd94 GS |
593 | |
594 | !IF "$(CRYPT_SRC)" != "" | |
595 | WIN32_SRC = $(WIN32_SRC) .\$(CRYPT_SRC) | |
596 | !ENDIF | |
597 | ||
598 | DLL_SRC = $(DYNALOADER).c | |
599 | ||
600 | X2P_SRC = \ | |
601 | ..\x2p\a2p.c \ | |
602 | ..\x2p\hash.c \ | |
603 | ..\x2p\str.c \ | |
604 | ..\x2p\util.c \ | |
605 | ..\x2p\walk.c | |
606 | ||
607 | CORE_NOCFG_H = \ | |
608 | ..\av.h \ | |
609 | ..\cop.h \ | |
610 | ..\cv.h \ | |
611 | ..\dosish.h \ | |
612 | ..\embed.h \ | |
613 | ..\form.h \ | |
614 | ..\gv.h \ | |
615 | ..\handy.h \ | |
616 | ..\hv.h \ | |
617 | ..\iperlsys.h \ | |
618 | ..\mg.h \ | |
619 | ..\nostdio.h \ | |
620 | ..\op.h \ | |
621 | ..\opcode.h \ | |
622 | ..\perl.h \ | |
623 | ..\perlapi.h \ | |
624 | ..\perlsdio.h \ | |
625 | ..\perlsfio.h \ | |
626 | ..\perly.h \ | |
627 | ..\pp.h \ | |
628 | ..\proto.h \ | |
629 | ..\regexp.h \ | |
630 | ..\scope.h \ | |
631 | ..\sv.h \ | |
632 | ..\thread.h \ | |
633 | ..\unixish.h \ | |
634 | ..\utf8.h \ | |
635 | ..\util.h \ | |
636 | ..\warnings.h \ | |
637 | ..\XSUB.h \ | |
638 | ..\EXTERN.h \ | |
639 | ..\perlvars.h \ | |
640 | ..\intrpvar.h \ | |
641 | ..\thrdvar.h \ | |
642 | .\include\dirent.h \ | |
643 | .\include\netdb.h \ | |
644 | .\include\sys\socket.h \ | |
645 | .\win32.h | |
646 | ||
647 | CORE_H = $(CORE_NOCFG_H) .\config.h | |
648 | ||
649 | MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj) | |
650 | CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj) | |
651 | WIN32_OBJ = $(WIN32_SRC:.c=.obj) | |
652 | MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \ | |
653 | $(MINIDIR)\miniperlmain$(o) \ | |
654 | $(MINIDIR)\perlio$(o) | |
655 | MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\) | |
656 | MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ) | |
657 | DLL_OBJ = $(DLL_SRC:.c=.obj) | |
658 | X2P_OBJ = $(X2P_SRC:.c=.obj) | |
659 | ||
660 | PERLDLL_OBJ = $(CORE_OBJ) | |
661 | PERLEXE_OBJ = perlmain$(o) | |
662 | ||
663 | PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ) | |
664 | #PERLEXE_OBJ = $(PERLEXE_OBJ) $(WIN32_OBJ) $(DLL_OBJ) | |
665 | ||
666 | !IF "$(USE_SETARGV)" != "" | |
667 | SETARGV_OBJ = setargv$(o) | |
668 | !ENDIF | |
669 | ||
670 | DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader | |
671 | SOCKET = $(EXTDIR)\Socket\Socket | |
672 | FCNTL = $(EXTDIR)\Fcntl\Fcntl | |
673 | OPCODE = $(EXTDIR)\Opcode\Opcode | |
674 | SDBM_FILE = $(EXTDIR)\SDBM_File\SDBM_File | |
675 | IO = $(EXTDIR)\IO\IO | |
676 | POSIX = $(EXTDIR)\POSIX\POSIX | |
677 | ATTRS = $(EXTDIR)\attrs\attrs | |
678 | THREAD = $(EXTDIR)\Thread\Thread | |
679 | B = $(EXTDIR)\B\B | |
680 | RE = $(EXTDIR)\re\re | |
681 | DUMPER = $(EXTDIR)\Data\Dumper\Dumper | |
682 | ERRNO = $(EXTDIR)\Errno\Errno | |
683 | PEEK = $(EXTDIR)\Devel\Peek\Peek | |
684 | BYTELOADER = $(EXTDIR)\ByteLoader\ByteLoader | |
685 | DPROF = $(EXTDIR)\Devel\DProf\DProf | |
686 | GLOB = $(EXTDIR)\File\Glob\Glob | |
687 | HOSTNAME = $(EXTDIR)\Sys\Hostname\Hostname | |
688 | STORABLE = $(EXTDIR)\Storable\Storable | |
689 | FILTER = $(EXTDIR)\Filter\Util\Call\Call | |
690 | ENCODE = $(EXTDIR)\Encode\Encode | |
691 | MD5 = $(EXTDIR)\Digest\MD5\MD5 | |
e934609f | 692 | PERLIOSCALAR = $(EXTDIR)\PerlIO\scalar\scalar |
9e42cd94 GS |
693 | MIMEBASE64 = $(EXTDIR)\MIME\Base64\Base64 |
694 | TIMEHIRES = $(EXTDIR)\Time\HiRes\HiRes | |
695 | CWD = $(EXTDIR)\Cwd\Cwd | |
696 | LISTUTIL = $(EXTDIR)\List\Util\Util | |
e934609f | 697 | PERLIOVIA = $(EXTDIR)\PerlIO\via\via |
83e2e978 | 698 | XSAPITEST = $(EXTDIR)\XS\APItest\APItest |
9e42cd94 GS |
699 | XSTYPEMAP = $(EXTDIR)\XS\Typemap\Typemap |
700 | UNICODENORMALIZE = $(EXTDIR)\Unicode\Normalize\Normalize | |
b4ad57f4 | 701 | WIN32_DIR = ext\Win32 |
9e42cd94 GS |
702 | |
703 | SOCKET_DLL = $(AUTODIR)\Socket\Socket.dll | |
704 | FCNTL_DLL = $(AUTODIR)\Fcntl\Fcntl.dll | |
705 | OPCODE_DLL = $(AUTODIR)\Opcode\Opcode.dll | |
706 | SDBM_FILE_DLL = $(AUTODIR)\SDBM_File\SDBM_File.dll | |
707 | IO_DLL = $(AUTODIR)\IO\IO.dll | |
708 | POSIX_DLL = $(AUTODIR)\POSIX\POSIX.dll | |
709 | ATTRS_DLL = $(AUTODIR)\attrs\attrs.dll | |
710 | THREAD_DLL = $(AUTODIR)\Thread\Thread.dll | |
711 | B_DLL = $(AUTODIR)\B\B.dll | |
712 | DUMPER_DLL = $(AUTODIR)\Data\Dumper\Dumper.dll | |
713 | PEEK_DLL = $(AUTODIR)\Devel\Peek\Peek.dll | |
714 | RE_DLL = $(AUTODIR)\re\re.dll | |
715 | BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll | |
716 | DPROF_DLL = $(AUTODIR)\Devel\DProf\DProf.dll | |
717 | GLOB_DLL = $(AUTODIR)\File\Glob\Glob.dll | |
718 | HOSTNAME_DLL = $(AUTODIR)\Sys\Hostname\Hostname.dll | |
719 | STORABLE_DLL = $(AUTODIR)\Storable\Storable.dll | |
720 | FILTER_DLL = $(AUTODIR)\Filter\Util\Call\Call.dll | |
721 | ENCODE_DLL = $(AUTODIR)\Encode\Encode.dll | |
722 | MD5_DLL = $(AUTODIR)\Digest\MD5\MD5.dll | |
e934609f | 723 | PERLIOSCALAR_DLL = $(AUTODIR)\PerlIO\scalar\scalar.dll |
9e42cd94 GS |
724 | MIMEBASE64_DLL = $(AUTODIR)\MIME\Base64\Base64.dll |
725 | TIMEHIRES_DLL = $(AUTODIR)\Time\HiRes\HiRes.dll | |
726 | CWD_DLL = $(AUTODIR)\Cwd\Cwd.dll | |
727 | LISTUTIL_DLL = $(AUTODIR)\List\Util\Util.dll | |
e934609f | 728 | PERLIOVIA_DLL = $(AUTODIR)\PerlIO\via\via.dll |
83e2e978 | 729 | XSAPITEST_DLL = $(AUTODIR)\XS\APItest\APItest.dll |
9e42cd94 GS |
730 | XSTYPEMAP_DLL = $(AUTODIR)\XS\Typemap\Typemap.dll |
731 | UNICODENORMALIZE_DLL = $(AUTODIR)\Unicode\Normalize\Normalize.dll | |
b4ad57f4 | 732 | WIN32_DLL = $(AUTODIR)\Win32\Win32.dll |
9e42cd94 GS |
733 | |
734 | EXTENSION_C = \ | |
735 | $(SOCKET).c \ | |
736 | $(FCNTL).c \ | |
737 | $(OPCODE).c \ | |
738 | $(SDBM_FILE).c \ | |
739 | $(IO).c \ | |
740 | $(POSIX).c \ | |
741 | $(ATTRS).c \ | |
742 | $(THREAD).c \ | |
743 | $(RE).c \ | |
744 | $(DUMPER).c \ | |
745 | $(PEEK).c \ | |
746 | $(B).c \ | |
747 | $(BYTELOADER).c \ | |
748 | $(DPROF).c \ | |
749 | $(GLOB).c \ | |
750 | $(HOSTNAME).c \ | |
751 | $(STORABLE).c \ | |
752 | $(FILTER).c \ | |
753 | $(ENCODE).c \ | |
754 | $(MD5).c \ | |
755 | $(PERLIOSCALAR).c \ | |
756 | $(MIMEBASE64).c \ | |
757 | $(TIMEHIRES).c \ | |
758 | $(CWD).c \ | |
759 | $(LISTUTIL).c \ | |
760 | $(PERLIOVIA).c \ | |
83e2e978 | 761 | $(XSAPITEST).c \ |
9e42cd94 | 762 | $(XSTYPEMAP).c \ |
b4ad57f4 NC |
763 | $(UNICODENORMALIZE).c \ |
764 | $(WIN32_DIR).c | |
9e42cd94 GS |
765 | |
766 | EXTENSION_DLL = \ | |
767 | $(SOCKET_DLL) \ | |
768 | $(FCNTL_DLL) \ | |
769 | $(OPCODE_DLL) \ | |
770 | $(SDBM_FILE_DLL)\ | |
771 | $(IO_DLL) \ | |
772 | $(POSIX_DLL) \ | |
773 | $(ATTRS_DLL) \ | |
774 | $(DUMPER_DLL) \ | |
775 | $(PEEK_DLL) \ | |
776 | $(B_DLL) \ | |
777 | $(RE_DLL) \ | |
778 | $(THREAD_DLL) \ | |
779 | $(BYTELOADER_DLL) \ | |
780 | $(DPROF_DLL) \ | |
781 | $(GLOB_DLL) \ | |
782 | $(HOSTNAME_DLL) \ | |
783 | $(STORABLE_DLL) \ | |
784 | $(FILTER_DLL) \ | |
785 | $(ENCODE_DLL) \ | |
786 | $(MD5_DLL) \ | |
787 | $(PERLIOSCALAR_DLL) \ | |
788 | $(MIMEBASE64_DLL) \ | |
789 | $(TIMEHIRES_DLL) \ | |
790 | $(CWD_DLL) \ | |
791 | $(LISTUTIL_DLL) \ | |
792 | $(PERLIOVIA_DLL) \ | |
83e2e978 | 793 | $(XSAPITEST_DLL) \ |
9e42cd94 | 794 | $(XSTYPEMAP_DLL) \ |
b4ad57f4 NC |
795 | $(UNICODENORMALIZE_DLL) \ |
796 | $(WIN32_DLL) | |
9e42cd94 GS |
797 | |
798 | POD2HTML = $(PODDIR)\pod2html | |
799 | POD2MAN = $(PODDIR)\pod2man | |
800 | POD2LATEX = $(PODDIR)\pod2latex | |
801 | POD2TEXT = $(PODDIR)\pod2text | |
802 | ||
803 | CFG_VARS = \ | |
804 | "INST_DRV=$(INST_DRV)" \ | |
805 | "INST_TOP=$(INST_TOP)" \ | |
806 | "INST_VER=$(INST_VER)" \ | |
807 | "INST_ARCH=$(INST_ARCH)" \ | |
808 | "archname=$(ARCHNAME)" \ | |
809 | "cc=$(CC)" \ | |
810 | "ld=$(LINK32)" \ | |
811 | "ccflags=-nologo -Gf -W3 $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \ | |
812 | "cf_email=$(EMAIL)" \ | |
813 | "d_crypt=$(D_CRYPT)" \ | |
814 | "d_mymalloc=$(PERL_MALLOC)" \ | |
815 | "libs=$(LIBFILES)" \ | |
816 | "incpath=$(CCINCDIR:"=\")" \ | |
817 | "libperl=$(PERLIMPLIB:..\=)" \ | |
818 | "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \ | |
819 | "libc=$(LIBC)" \ | |
820 | "make=$(MAKE_BARE)" \ | |
d2b25974 | 821 | "static_ext=$(STATIC_EXT)" \ |
7e0017d3 | 822 | "usethreads=$(USE_ITHREADS)" \ |
9e42cd94 | 823 | "useithreads=$(USE_ITHREADS)" \ |
9e42cd94 GS |
824 | "usemultiplicity=$(USE_MULTI)" \ |
825 | "useperlio=$(USE_PERLIO)" \ | |
4a9d6100 | 826 | "uselargefiles=$(USE_LARGE_FILES)" \ |
9e42cd94 GS |
827 | "LINK_FLAGS=$(LINK_FLAGS:"=\")" \ |
828 | "optimize=$(OPTIMIZE:"=\")" | |
829 | ||
830 | # | |
831 | # Top targets | |
832 | # | |
833 | ||
ca12659b | 834 | all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \ |
9e42cd94 GS |
835 | $(X2P) Extensions |
836 | @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite. | |
837 | ||
838 | $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c | |
839 | ||
840 | #------------------------------------------------------------ | |
841 | ||
842 | $(GLOBEXE) : perlglob$(o) | |
843 | $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \ | |
844 | perlglob$(o) setargv$(o) | |
845 | ||
846 | perlglob$(o) : perlglob.c | |
847 | ||
848 | config.w32 : $(CFGSH_TMPL) | |
849 | copy $(CFGSH_TMPL) config.w32 | |
850 | ||
851 | .\config.h : $(CFGH_TMPL) | |
852 | -del /f config.h | |
853 | copy $(CFGH_TMPL) config.h | |
854 | ||
855 | ..\config.sh : config.w32 $(MINIPERL) config_sh.PL | |
856 | $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh | |
857 | ||
858 | # this target is for when changes to the main config.sh happen | |
859 | # edit config.{b,v,g}c and make this target once for each supported | |
860 | # compiler (e.g. `nmake CCTYPE=BORLAND regen_config_h`) | |
861 | regen_config_h: | |
862 | perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh | |
863 | cd .. | |
8839b9e4 | 864 | -del /f perl.exe perl*.dll |
9e42cd94 GS |
865 | perl configpm |
866 | cd win32 | |
867 | -del /f $(CFGH_TMPL) | |
868 | -mkdir $(COREDIR) | |
8839b9e4 | 869 | -perl config_h.PL "INST_VER=$(INST_VER)" |
9e42cd94 GS |
870 | rename config.h $(CFGH_TMPL) |
871 | ||
872 | $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl | |
873 | cd .. | |
874 | miniperl configpm | |
875 | cd win32 | |
876 | if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL) | |
877 | $(XCOPY) ..\*.h $(COREDIR)\*.* | |
878 | $(XCOPY) *.h $(COREDIR)\*.* | |
879 | $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.* | |
880 | $(RCOPY) include $(COREDIR)\*.* | |
881 | -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" | |
882 | if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM) | |
883 | ||
884 | $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) | |
885 | $(LINK32) -subsystem:console -out:$@ @<< | |
886 | $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ) | |
887 | << | |
888 | ||
889 | $(MINIDIR) : | |
890 | if not exist "$(MINIDIR)" mkdir "$(MINIDIR)" | |
891 | ||
892 | $(MINICORE_OBJ) : $(CORE_NOCFG_H) | |
893 | $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c | |
894 | ||
895 | $(MINIWIN32_OBJ) : $(CORE_NOCFG_H) | |
896 | $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c | |
897 | ||
898 | # -DPERL_IMPLICIT_SYS needs C++ for perllib.c | |
899 | # This is the only file that depends on perlhost.h, vmem.h, and vdir.h | |
900 | !IF "$(USE_IMP_SYS)" == "define" | |
901 | perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h | |
902 | $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c | |
903 | !ENDIF | |
904 | ||
905 | # 1. we don't want to rebuild miniperl.exe when config.h changes | |
906 | # 2. we don't want to rebuild miniperl.exe with non-default config.h | |
907 | $(MINI_OBJ) : $(CORE_NOCFG_H) | |
908 | ||
909 | $(WIN32_OBJ) : $(CORE_H) | |
910 | $(CORE_OBJ) : $(CORE_H) | |
911 | $(DLL_OBJ) : $(CORE_H) | |
912 | $(X2P_OBJ) : $(CORE_H) | |
913 | ||
914 | perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl | |
915 | $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \ | |
916 | CCTYPE=$(CCTYPE) > perldll.def | |
917 | ||
918 | $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) | |
919 | $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @<< | |
920 | $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES) | |
921 | << | |
922 | $(XCOPY) $(PERLIMPLIB) $(COREDIR) | |
923 | ||
e84ac4e2 SH |
924 | $(PERLEXE_ICO): $(MINIPERL) makeico.pl |
925 | $(MINIPERL) makeico.pl > $@ | |
926 | ||
927 | $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO) | |
928 | ||
9e42cd94 GS |
929 | $(MINIMOD) : $(MINIPERL) ..\minimod.pl |
930 | cd .. | |
931 | miniperl minimod.pl > lib\ExtUtils\Miniperl.pm | |
932 | cd win32 | |
933 | ||
934 | ..\x2p\a2p$(o) : ..\x2p\a2p.c | |
935 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c | |
936 | ||
937 | ..\x2p\hash$(o) : ..\x2p\hash.c | |
938 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c | |
939 | ||
940 | ..\x2p\str$(o) : ..\x2p\str.c | |
941 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c | |
942 | ||
943 | ..\x2p\util$(o) : ..\x2p\util.c | |
944 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c | |
945 | ||
946 | ..\x2p\walk$(o) : ..\x2p\walk.c | |
947 | $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c | |
948 | ||
949 | $(X2P) : $(MINIPERL) $(X2P_OBJ) | |
950 | $(MINIPERL) ..\x2p\find2perl.PL | |
951 | $(MINIPERL) ..\x2p\s2p.PL | |
952 | $(LINK32) -subsystem:console -out:$@ @<< | |
953 | $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ) | |
954 | << | |
955 | ||
956 | perlmain.c : runperl.c | |
957 | copy runperl.c perlmain.c | |
958 | ||
959 | perlmain$(o) : perlmain.c | |
960 | $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c | |
961 | ||
962 | $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES) | |
963 | $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \ | |
964 | $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES) | |
965 | copy $(PERLEXE) $(WPERLEXE) | |
966 | $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS | |
967 | copy splittree.pl .. | |
968 | $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR) | |
969 | ||
970 | $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM) | |
971 | if not exist $(AUTODIR) mkdir $(AUTODIR) | |
972 | cd $(EXTDIR)\$(*B) | |
973 | ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL | |
974 | ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL | |
975 | cd ..\..\win32 | |
976 | $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL) | |
977 | $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL) | |
978 | cd $(EXTDIR)\$(*B) | |
979 | $(XSUBPP) dl_win32.xs > $(*B).c | |
980 | cd ..\..\win32 | |
981 | ||
982 | $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs | |
983 | copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs | |
984 | ||
985 | #---------------------------------------------------------------------------------- | |
986 | Extensions: buildext.pl $(PERLDEP) $(CONFIGPM) | |
987 | $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) | |
b4ad57f4 | 988 | $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext |
9e42cd94 | 989 | |
6c85d12e SH |
990 | # Note: The next two targets explicitly remove a "blibdirs.exists" file that |
991 | # currerntly gets left behind, until CPAN RT Ticket #5616 is resolved. | |
992 | ||
9e42cd94 GS |
993 | Extensions_clean: |
994 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean | |
b4ad57f4 | 995 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean |
6c85d12e | 996 | -if exist $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists del /f $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists |
9e42cd94 | 997 | |
b4dc1df6 SH |
998 | Extensions_realclean: |
999 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean | |
b4ad57f4 | 1000 | -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean |
6c85d12e | 1001 | -if exist $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists del /f $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists |
b4dc1df6 | 1002 | |
9e42cd94 GS |
1003 | #---------------------------------------------------------------------------------- |
1004 | ||
1005 | doc: $(PERLEXE) | |
1006 | $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \ | |
1007 | --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \ | |
1008 | --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse | |
1009 | ||
b0b6bf2b AT |
1010 | # Note that this next section is parsed (and regenerated) by pod/buildtoc |
1011 | # so please check that script before making structural changes here | |
1012 | ||
9e42cd94 GS |
1013 | utils: $(PERLEXE) $(X2P) |
1014 | cd ..\utils | |
1015 | $(MAKE) PERL=$(MINIPERL) | |
1016 | cd ..\pod | |
4cb44f92 | 1017 | copy ..\vms\perlvms.pod .\perlvms.pod |
b0b6bf2b AT |
1018 | copy ..\README.aix ..\pod\perlaix.pod |
1019 | copy ..\README.amiga ..\pod\perlamiga.pod | |
1020 | copy ..\README.apollo ..\pod\perlapollo.pod | |
1021 | copy ..\README.beos ..\pod\perlbeos.pod | |
1022 | copy ..\README.bs2000 ..\pod\perlbs2000.pod | |
1023 | copy ..\README.ce ..\pod\perlce.pod | |
1024 | copy ..\README.cn ..\pod\perlcn.pod | |
1025 | copy ..\README.cygwin ..\pod\perlcygwin.pod | |
1026 | copy ..\README.dgux ..\pod\perldgux.pod | |
1027 | copy ..\README.dos ..\pod\perldos.pod | |
1028 | copy ..\README.epoc ..\pod\perlepoc.pod | |
1029 | copy ..\README.freebsd ..\pod\perlfreebsd.pod | |
1030 | copy ..\README.hpux ..\pod\perlhpux.pod | |
1031 | copy ..\README.hurd ..\pod\perlhurd.pod | |
1032 | copy ..\README.irix ..\pod\perlirix.pod | |
1033 | copy ..\README.jp ..\pod\perljp.pod | |
1034 | copy ..\README.ko ..\pod\perlko.pod | |
1035 | copy ..\README.machten ..\pod\perlmachten.pod | |
1036 | copy ..\README.macos ..\pod\perlmacos.pod | |
1037 | copy ..\README.macosx ..\pod\perlmacosx.pod | |
1038 | copy ..\README.mint ..\pod\perlmint.pod | |
1039 | copy ..\README.mpeix ..\pod\perlmpeix.pod | |
1040 | copy ..\README.netware ..\pod\perlnetware.pod | |
1041 | copy ..\README.os2 ..\pod\perlos2.pod | |
1042 | copy ..\README.os390 ..\pod\perlos390.pod | |
1043 | copy ..\README.os400 ..\pod\perlos400.pod | |
1044 | copy ..\README.plan9 ..\pod\perlplan9.pod | |
1045 | copy ..\README.qnx ..\pod\perlqnx.pod | |
1046 | copy ..\README.solaris ..\pod\perlsolaris.pod | |
1047 | copy ..\README.tru64 ..\pod\perltru64.pod | |
1048 | copy ..\README.tw ..\pod\perltw.pod | |
1049 | copy ..\README.uts ..\pod\perluts.pod | |
1050 | copy ..\README.vmesa ..\pod\perlvmesa.pod | |
1051 | copy ..\README.vms ..\pod\perlvms.pod | |
1052 | copy ..\README.vos ..\pod\perlvos.pod | |
1053 | copy ..\README.win32 ..\pod\perlwin32.pod | |
e0eb806d | 1054 | copy ..\pod\perl592delta.pod ..\pod\perldelta.pod |
9e42cd94 GS |
1055 | $(MAKE) -f ..\win32\pod.mak converters |
1056 | cd ..\lib | |
1057 | $(PERLEXE) lib_pm.PL | |
1058 | cd ..\win32 | |
1059 | $(PERLEXE) $(PL2BAT) $(UTILS) | |
1060 | ||
b0b6bf2b AT |
1061 | # Note that the pod cleanup in this next section is parsed (and regenerated |
1062 | # by pod/buildtoc so please check that script before making changes here | |
1063 | ||
522078af GS |
1064 | # the doubled rmdir calls are needed because older cmd shells |
1065 | # don't understand /q | |
b4dc1df6 | 1066 | distclean: realclean |
9e42cd94 GS |
1067 | -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \ |
1068 | $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) | |
1069 | -del /f *.def *.map | |
1070 | -del /f $(EXTENSION_DLL) | |
1071 | -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm | |
1072 | -del /f $(EXTDIR)\DynaLoader\dl_win32.xs | |
ca67812f SH |
1073 | -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm |
1074 | -del /f $(EXTDIR)\DynaLoader\XSLoader.pm | |
1075 | -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm | |
1076 | -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm | |
9e42cd94 | 1077 | -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm |
b4dc1df6 | 1078 | -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm |
9e42cd94 GS |
1079 | -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm |
1080 | -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm | |
1081 | -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm | |
1082 | -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm | |
ca67812f | 1083 | -del /f $(LIBDIR)\ByteLoader.pm |
9e42cd94 | 1084 | -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm |
ca67812f | 1085 | -del /f $(LIBDIR)\Devel\PPPort.pm |
9e42cd94 GS |
1086 | -del /f $(LIBDIR)\File\Glob.pm |
1087 | -del /f $(LIBDIR)\Storable.pm | |
9e42cd94 | 1088 | -del /f $(LIBDIR)\Digest\MD5.pm |
ca67812f | 1089 | -del /f $(LIBDIR)\PerlIO\encoding.pm |
e934609f JH |
1090 | -del /f $(LIBDIR)\PerlIO\scalar.pm |
1091 | -del /f $(LIBDIR)\PerlIO\via.pm | |
ca67812f SH |
1092 | -del /f $(LIBDIR)\Sys\Hostname.pm |
1093 | -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm | |
1094 | -del /f $(LIBDIR)\threads\shared.pm | |
9e42cd94 | 1095 | -del /f $(LIBDIR)\Time\HiRes.pm |
9e42cd94 | 1096 | -del /f $(LIBDIR)\Unicode\Normalize.pm |
b4ad57f4 | 1097 | -del /f $(LIBDIR)\Win32.pm |
9e42cd94 | 1098 | -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO |
522078af | 1099 | -if exist $(LIBDIR)\IO rmdir /s $(LIBDIR)\IO |
9e42cd94 | 1100 | -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B |
522078af | 1101 | -if exist $(LIBDIR)\B rmdir /s $(LIBDIR)\B |
9e42cd94 | 1102 | -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data |
522078af | 1103 | -if exist $(LIBDIR)\Data rmdir /s $(LIBDIR)\Data |
ca67812f SH |
1104 | -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode |
1105 | -if exist $(LIBDIR)\Encode rmdir /s $(LIBDIR)\Encode | |
9e42cd94 | 1106 | -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util |
522078af | 1107 | -if exist $(LIBDIR)\Filter\Util rmdir /s $(LIBDIR)\Filter\Util |
9e42cd94 | 1108 | -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME |
522078af | 1109 | -if exist $(LIBDIR)\MIME rmdir /s $(LIBDIR)\MIME |
9e42cd94 | 1110 | -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List |
522078af | 1111 | -if exist $(LIBDIR)\List rmdir /s $(LIBDIR)\List |
9e42cd94 | 1112 | -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar |
522078af | 1113 | -if exist $(LIBDIR)\Scalar rmdir /s $(LIBDIR)\Scalar |
6c4b87ea SH |
1114 | -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys |
1115 | -if exist $(LIBDIR)\Sys rmdir /s $(LIBDIR)\Sys | |
1116 | -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads | |
1117 | -if exist $(LIBDIR)\threads rmdir /s $(LIBDIR)\threads | |
9e42cd94 | 1118 | -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS |
522078af | 1119 | -if exist $(LIBDIR)\XS rmdir /s $(LIBDIR)\XS |
ca67812f | 1120 | -cd $(PODDIR) && del /f *.html *.bat checkpods \ |
9e42cd94 | 1121 | perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \ |
b0b6bf2b | 1122 | perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \ |
1400179b NC |
1123 | perldelta.pod perldgux.pod perldos.pod perlepoc.pod \ |
1124 | perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \ | |
1125 | perljp.pod perlko.pod perlmachten.pod perlmacos.pod \ | |
1126 | perlmacosx.pod perlmint.pod perlmpeix.pod perlnetware.pod \ | |
1127 | perlos2.pod perlos390.pod perlos400.pod perlplan9.pod \ | |
1128 | perlqnx.pod perlsolaris.pod perltru64.pod perltw.pod \ | |
e0eb806d RGS |
1129 | perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \ |
1130 | perlwin32.pod \ | |
b0b6bf2b | 1131 | pod2html pod2latex pod2man pod2text pod2usage \ |
9e42cd94 | 1132 | podchecker podselect |
ca67812f SH |
1133 | -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \ |
1134 | perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv cpan *.bat \ | |
18a1cebe | 1135 | xsubpp instmodsh prove corelist |
ca67812f | 1136 | -cd ..\x2p && del /f find2perl s2p psed *.bat |
9e42cd94 GS |
1137 | -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new |
1138 | -del /f $(CONFIGPM) | |
1139 | -del /f bin\*.bat | |
ec25c072 | 1140 | -del /f $(PERLEXE_ICO) perl.base |
ca67812f SH |
1141 | -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib |
1142 | -cd $(EXTDIR) && del /s *.def Makefile Makefile.old | |
9e42cd94 | 1143 | -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) |
522078af | 1144 | -if exist $(AUTODIR) rmdir /s $(AUTODIR) |
9e42cd94 | 1145 | -if exist $(COREDIR) rmdir /s /q $(COREDIR) |
522078af | 1146 | -if exist $(COREDIR) rmdir /s $(COREDIR) |
9e42cd94 GS |
1147 | |
1148 | install : all installbare installhtml | |
1149 | ||
1150 | installbare : utils | |
1151 | $(PERLEXE) ..\installperl | |
1152 | if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.* | |
1153 | $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.* | |
ec25c072 SH |
1154 | if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.* |
1155 | if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.* | |
9e42cd94 GS |
1156 | $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.* |
1157 | ||
1158 | installhtml : doc | |
1159 | $(RCOPY) html\*.* $(INST_HTML)\*.* | |
1160 | ||
1161 | inst_lib : $(CONFIGPM) | |
1162 | copy splittree.pl .. | |
1163 | $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR) | |
1164 | $(RCOPY) ..\lib $(INST_LIB)\*.* | |
1165 | ||
ca12659b | 1166 | $(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables |
27a8011f SH |
1167 | cd ..\lib\unicore && \ |
1168 | ..\$(MINIPERL) -I.. mktables | |
ca12659b NC |
1169 | |
1170 | minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES) | |
6c85d12e SH |
1171 | $(XCOPY) $(MINIPERL) ..\t\$(NULL) |
1172 | if exist ..\t\perl.exe del /f ..\t\perl.exe | |
1173 | rename ..\t\miniperl.exe perl.exe | |
9e42cd94 GS |
1174 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) |
1175 | attrib -r ..\t\*.* | |
6c85d12e SH |
1176 | cd ..\t && \ |
1177 | $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t | |
9e42cd94 GS |
1178 | |
1179 | test-prep : all utils | |
1180 | $(XCOPY) $(PERLEXE) ..\t\$(NULL) | |
1181 | $(XCOPY) $(PERLDLL) ..\t\$(NULL) | |
1182 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) | |
1183 | ||
1184 | test : test-prep | |
1185 | cd ..\t | |
89087c85 | 1186 | $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) |
9e42cd94 GS |
1187 | cd ..\win32 |
1188 | ||
1189 | test-notty : test-prep | |
1190 | set PERL_SKIP_TTY_TEST=1 | |
1191 | cd ..\t | |
89087c85 | 1192 | $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) |
9e42cd94 GS |
1193 | cd ..\win32 |
1194 | ||
b4a93add NK |
1195 | _test : |
1196 | $(XCOPY) $(PERLEXE) ..\t\$(NULL) | |
1197 | $(XCOPY) $(PERLDLL) ..\t\$(NULL) | |
1198 | $(XCOPY) $(GLOBEXE) ..\t\$(NULL) | |
1199 | cd ..\t | |
89087c85 | 1200 | $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) |
b4a93add NK |
1201 | cd ..\win32 |
1202 | ||
27a8011f SH |
1203 | # the doubled rmdir calls are needed because older cmd shells |
1204 | # don't understand /q | |
b4dc1df6 | 1205 | _clean : |
9e42cd94 GS |
1206 | -@$(DEL) miniperlmain$(o) |
1207 | -@$(DEL) $(MINIPERL) | |
1208 | -@$(DEL) perlglob$(o) | |
1209 | -@$(DEL) perlmain$(o) | |
1210 | -@$(DEL) config.w32 | |
1211 | -@$(DEL) config.h | |
1212 | -@$(DEL) $(GLOBEXE) | |
1213 | -@$(DEL) $(PERLEXE) | |
1214 | -@$(DEL) $(WPERLEXE) | |
1215 | -@$(DEL) $(PERLDLL) | |
1216 | -@$(DEL) $(CORE_OBJ) | |
1217 | -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) | |
522078af | 1218 | -if exist $(MINIDIR) rmdir /s $(MINIDIR) |
27a8011f SH |
1219 | -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1) |
1220 | -if exist $(UNIDATADIR1) rmdir /s $(UNIDATADIR1) | |
1221 | -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2) | |
1222 | -if exist $(UNIDATADIR2) rmdir /s $(UNIDATADIR2) | |
ca12659b | 1223 | -@$(DEL) $(UNIDATAFILES) |
27a8011f | 1224 | -@$(DEL) $(WIN32_OBJ) |
9e42cd94 GS |
1225 | -@$(DEL) $(DLL_OBJ) |
1226 | -@$(DEL) $(X2P_OBJ) | |
1227 | -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res | |
1228 | -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat | |
1229 | -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat | |
1230 | -@$(DEL) *.ilk | |
1231 | -@$(DEL) *.pdb | |
1232 | ||
b4dc1df6 SH |
1233 | clean : Extensions_clean _clean |
1234 | ||
1235 | realclean : Extensions_realclean _clean | |
1236 | ||
9e42cd94 GS |
1237 | # Handy way to run perlbug -ok without having to install and run the |
1238 | # installed perlbug. We don't re-run the tests here - we trust the user. | |
1239 | # Please *don't* use this unless all tests pass. | |
1240 | # If you want to report test failures, use "nmake nok" instead. | |
1241 | ok: utils | |
1242 | $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" | |
1243 | ||
1244 | okfile: utils | |
1245 | $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok | |
1246 | ||
1247 | nok: utils | |
1248 | $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" | |
1249 | ||
1250 | nokfile: utils | |
1251 | $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok |