0229a84f8ee6fb8f5b639c4a0e341bbf29a394da
[p5sagit/p5-mst-13.2.git] / win32 / makefile.mk
1 #
2 # Makefile to build perl on Windows NT using DMAKE.
3 # Supported compilers:
4 #       Visual C++ 2.0 thro 6.0
5 #       Borland C++ 5.02
6 #       Mingw32 with gcc-2.95.2 or better  **experimental**
7 #
8 # This is set up to build a perl.exe that runs off a shared library
9 # (perl57.dll).  Also makes individual DLLs for the XS extensions.
10 #
11
12 ##
13 ## Make sure you read README.win32 *before* you mess with anything here!
14 ##
15
16 ##
17 ## Build configuration.  Edit the values below to suit your needs.
18 ##
19
20 #
21 # Set these to wherever you want "dmake install" to put your
22 # newly built perl.
23 #
24 INST_DRV        *= c:
25 INST_TOP        *= $(INST_DRV)\perl
26
27 #
28 # Comment this out if you DON'T want your perl installation to be versioned.
29 # This means that the new installation will overwrite any files from the
30 # old installation at the same INST_TOP location.  Leaving it enabled is
31 # the safest route, as perl adds the extra version directory to all the
32 # locations it installs files to.  If you disable it, an alternative
33 # versioned installation can be obtained by setting INST_TOP above to a
34 # path that includes an arbitrary version string.
35 #
36 INST_VER        *= \5.7.0
37
38 #
39 # Comment this out if you DON'T want your perl installation to have
40 # architecture specific components.  This means that architecture-
41 # specific files will be installed along with the architecture-neutral
42 # files.  Leaving it enabled is safer and more flexible, in case you
43 # want to build multiple flavors of perl and install them together in
44 # the same location.  Commenting it out gives you a simpler
45 # installation that is easier to understand for beginners.
46 #
47 INST_ARCH       *= \$(ARCHNAME)
48
49 #
50 # uncomment to enable multiple interpreters.  This is need for fork()
51 # emulation.
52 #
53 USE_MULTI       *= define
54
55 #
56 # Beginnings of interpreter cloning/threads; still very incomplete.
57 # This should be enabled to get the fork() emulation.  This needs
58 # USE_MULTI as well.
59 #
60 USE_ITHREADS    *= define
61
62 #
63 # uncomment to enable the implicit "host" layer for all system calls
64 # made by perl.  This needs USE_MULTI above.  This is also needed to
65 # get fork().
66 #
67 USE_IMP_SYS     *= define
68
69 #
70 # uncomment to enable the experimental PerlIO I/O subsystem.
71 USE_PERLIO      = define
72
73 #
74 # WARNING! This option is deprecated and will eventually go away (enable
75 # USE_ITHREADS instead).
76 #
77 # uncomment to enable threads-capabilities.  This is incompatible with
78 # USE_ITHREADS, and is only here for people who may have come to rely
79 # on the experimental Thread support that was in 5.005.
80 #
81 #USE_5005THREADS        *= define
82
83 #
84 # WARNING! This option is deprecated and will eventually go away (enable
85 # USE_MULTI instead).
86 #
87 # uncomment next line if you want to use the PERL_OBJECT build option.
88 # DO NOT ENABLE unless you have legacy code that relies on the C++
89 # CPerlObj class that was available in 5.005.  This cannot be enabled
90 # if you ask for USE_5005THREADS above.
91 #
92 #USE_OBJECT     *= define
93
94 #
95 # uncomment exactly one of the following
96 #
97 # Visual C++ 2.x
98 #CCTYPE         *= MSVC20
99 # Visual C++ > 2.x and < 6.x
100 #CCTYPE         *= MSVC
101 # Visual C++ >= 6.x
102 CCTYPE          *= MSVC60
103 # Borland 5.02 or later
104 #CCTYPE         *= BORLAND
105 # mingw32+gcc-2.95.2 or better
106 #CCTYPE         *= GCC
107
108 #
109 # uncomment this if your Borland compiler is older than v5.4.
110 BCCOLD = define
111 #
112 # uncomment this if you want to use Borland's VCL as your CRT
113 #BCCVCL = define
114
115 #
116 # uncomment this if you are compiling under Windows 95/98 and command.com
117 # (not needed if you're running under 4DOS/NT 6.01 or later)
118 #IS_WIN95       *= define
119
120 #
121 # uncomment next line if you want debug version of perl (big,slow)
122 # If not enabled, we automatically try to use maximum optimization
123 # with all compilers that are known to have a working optimizer.
124 #
125 CFG             *= Debug
126
127 #
128 # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
129 # It has patches that fix known bugs in older versions of MSVCRT.DLL.
130 # This currently requires VC 5.0 with Service Pack 3 or later.
131 # Get it from CPAN at http://www.perl.com/CPAN/authors/id/D/DO/DOUGL/
132 # and follow the directions in the package to install.
133 #
134 # Not recommended if you have VC 6.x and you're not running Windows 9x.
135 #
136 #USE_PERLCRT    *= define
137
138 #
139 # uncomment to enable linking with setargv.obj under the Visual C
140 # compiler. Setting this options enables perl to expand wildcards in
141 # arguments, but it may be harder to use alternate methods like
142 # File::DosGlob that are more powerful.  This option is supported only with
143 # Visual C.
144 #
145 #USE_SETARGV    *= define
146
147 #
148 # if you have the source for des_fcrypt(), uncomment this and make sure the
149 # file exists (see README.win32).  File should be located in the same
150 # directory as this file.
151 #
152 #CRYPT_SRC      *= fcrypt.c
153
154 #
155 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
156 # library, uncomment this, and make sure the library exists (see README.win32)
157 # Specify the full pathname of the library.
158 #
159 #CRYPT_LIB      *= fcrypt.lib
160
161 #
162 # set this if you wish to use perl's malloc
163 # WARNING: Turning this on/off WILL break binary compatibility with extensions
164 # you may have compiled with/without it.  Be prepared to recompile all
165 # extensions if you change the default.  Currently, this cannot be enabled
166 # if you ask for USE_IMP_SYS above.
167 #
168 #PERL_MALLOC    *= define
169
170 #
171 # set the install locations of the compiler include/libraries
172 # Running VCVARS32.BAT is *required* when using Visual C.
173 # Some versions of Visual C don't define MSVCDIR in the environment,
174 # so you may have to set CCHOME explicitly (spaces in the path name should
175 # not be quoted)
176 #
177 #CCHOME         *= F:\borland\bc5
178 CCHOME          *= $(MSVCDIR)
179 #CCHOME         *= c:\gcc-2.95.2
180 CCINCDIR        *= $(CCHOME)\include
181 CCLIBDIR        *= $(CCHOME)\lib
182
183 #
184 # Additional compiler flags can be specified here.
185 #
186
187 #
188 # This should normally be disabled.  Adding -DPERL_POLLUTE enables support
189 # for old symbols by default, at the expense of extreme pollution.  You most
190 # probably just want to build modules that won't compile with
191 #         perl Makefile.PL POLLUTE=1
192 # instead of enabling this.  Please report such modules to the respective
193 # authors.
194 #
195 #BUILDOPT       += -DPERL_POLLUTE
196
197 #
198 # This should normally be disabled.  Enabling it will disable the File::Glob
199 # implementation of CORE::glob.
200 #
201 #BUILDOPT       += -DPERL_EXTERNAL_GLOB
202
203 #
204 # This should normally be disabled.  Enabling it causes perl to read scripts
205 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
206 #BUILDOPT       += -DPERL_TEXTMODE_SCRIPTS
207
208 #
209 # specify semicolon-separated list of extra directories that modules will
210 # look for libraries (spaces in path names need not be quoted)
211 #
212 EXTRALIBDIRS    *=
213
214 #
215 # set this to point to cmd.exe (only needed if you use some
216 # alternate shell that doesn't grok cmd.exe style commands)
217 #
218 #SHELL          *= g:\winnt\system32\cmd.exe
219
220 #
221 # set this to your email address (perl will guess a value from
222 # from your loginname and your hostname, which may not be right)
223 #
224 #EMAIL          *=
225
226 ##
227 ## Build configuration ends.
228 ##
229
230 ##################### CHANGE THESE ONLY IF YOU MUST #####################
231
232 .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
233 D_CRYPT         = undef
234 .ELSE
235 D_CRYPT         = define
236 CRYPT_FLAG      = -DHAVE_DES_FCRYPT
237 .ENDIF
238
239 .IF "$(USE_OBJECT)" == "define"
240 PERL_MALLOC     != undef
241 USE_5005THREADS != undef
242 USE_MULTI       != undef
243 USE_IMP_SYS     != define
244 .ENDIF
245
246 PERL_MALLOC     *= undef
247
248 USE_5005THREADS *= undef
249
250 .IF "$(USE_5005THREADS)" == "define"
251 USE_ITHREADS    != undef
252 .ENDIF
253
254 .IF "$(USE_IMP_SYS)" == "define"
255 PERL_MALLOC     != undef
256 .ENDIF
257
258 USE_MULTI       *= undef
259 USE_OBJECT      *= undef
260 USE_ITHREADS    *= undef
261 USE_IMP_SYS     *= undef
262 USE_PERLIO      *= undef
263 USE_PERLCRT     *= undef
264
265 .IF "$(USE_IMP_SYS)$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" == "defineundefundefundef"
266 USE_MULTI       != define
267 .ENDIF
268
269 .IF "$(USE_ITHREADS)$(USE_MULTI)$(USE_OBJECT)" == "defineundefundef"
270 USE_MULTI       != define
271 USE_5005THREADS != undef
272 .ENDIF
273
274 .IF "$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" != "undefundefundef"
275 BUILDOPT        += -DPERL_IMPLICIT_CONTEXT
276 .ENDIF
277
278 .IF "$(USE_IMP_SYS)" != "undef"
279 BUILDOPT        += -DPERL_IMPLICIT_SYS
280 .ENDIF
281
282 .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE
283
284 PROCESSOR_ARCHITECTURE *= x86
285
286 .IF "$(USE_OBJECT)" == "define"
287 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)-object
288 .ELIF "$(USE_5005THREADS)" == "define"
289 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)-thread
290 .ELIF "$(USE_MULTI)" == "define"
291 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
292 .ELSE
293 .IF "$(USE_PERLIO)" == "define"
294 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio
295 .ELSE
296 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)
297 .ENDIF
298 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)
299 .ENDIF
300
301 .IF "$(USE_ITHREADS)" == "define"
302 ARCHNAME        !:= $(ARCHNAME)-thread
303 .ENDIF
304
305 # Visual Studio 98 specific
306 .IF "$(CCTYPE)" == "MSVC60"
307
308 # VC 6.0 can load the socket dll on demand.  Makes the test suite
309 # run in about 10% less time.
310 DELAYLOAD       *= -DELAYLOAD:wsock32.dll -DELAYLOAD:shell32.dll delayimp.lib
311
312 .IF "$(CFG)" == "Debug"
313 .ELSE
314 # VC 6.0 seems capable of compiling perl correctly with optimizations
315 # enabled.  Anything earlier fails tests.
316 CFG             *= Optimize
317 .ENDIF
318 .ENDIF
319
320 ARCHDIR         = ..\lib\$(ARCHNAME)
321 COREDIR         = ..\lib\CORE
322 AUTODIR         = ..\lib\auto
323 LIBDIR          = ..\lib
324 EXTDIR          = ..\ext
325 PODDIR          = ..\pod
326 EXTUTILSDIR     = $(LIBDIR)\ExtUtils
327
328 #
329 INST_SCRIPT     = $(INST_TOP)$(INST_VER)\bin
330 INST_BIN        = $(INST_SCRIPT)$(INST_ARCH)
331 INST_LIB        = $(INST_TOP)$(INST_VER)\lib
332 INST_ARCHLIB    = $(INST_LIB)$(INST_ARCH)
333 INST_COREDIR    = $(INST_ARCHLIB)\CORE
334 INST_POD        = $(INST_LIB)\pod
335 INST_HTML       = $(INST_TOP)$(INST_VER)\html
336
337 #
338 # Programs to compile, build .lib files and link
339 #
340
341 .USESHELL :
342
343 .IF "$(CCTYPE)" == "BORLAND"
344
345 CC              = bcc32
346 .IF "$(BCCOLD)" != "define"
347 LINK32          = ilink32
348 .ELSE
349 LINK32          = tlink32
350 .ENDIF
351 LIB32           = tlib /P128
352 IMPLIB          = implib -c
353 RSC             = rc
354
355 #
356 # Options
357 #
358 INCLUDES        = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
359 #PCHFLAGS       = -H -Hc -H=c:\temp\bcmoduls.pch
360 DEFINES         = -DWIN32 -D_MT $(CRYPT_FLAG)
361 LOCDEFS         = -DPERLDLL -DPERL_CORE
362 SUBSYS          = console
363 CXX_FLAG        = -P
364
365 LIBC            = cw32mti.lib
366 LIBFILES        = $(CRYPT_LIB) import32.lib $(LIBC)
367
368 .IF  "$(CFG)" == "Debug"
369 OPTIMIZE        = -v -D_RTLDLL -DDEBUGGING
370 LINK_DBG        = -v
371 .ELSE
372 OPTIMIZE        = -O2 -D_RTLDLL
373 LINK_DBG        =
374 .ENDIF
375
376 CFLAGS          = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
377                 $(PCHFLAGS) $(OPTIMIZE)
378 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)"  -L"$(CCLIBDIR)"
379 OBJOUT_FLAG     = -o
380 EXEOUT_FLAG     = -e
381 LIBOUT_FLAG     =
382 .IF "$(BCCOLD)" != "define"
383 LINK_FLAGS      += -Gn
384 .END
385 .IF "$(BCCVCL)" == "define"
386 LIBC            = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
387 LINK_FLAGS      += -L"$(CCLIBDIR)\Release"
388 .END
389
390
391 .ELIF "$(CCTYPE)" == "GCC"
392
393 CC              = gcc
394 LINK32          = gcc
395 LIB32           = ar rc
396 IMPLIB          = dlltool
397 RSC             = rc
398
399 i = .i
400 o = .o
401 a = .a
402
403 #
404 # Options
405 #
406
407 INCLUDES        = -I.\include -I. -I.. -I$(COREDIR)
408 DEFINES         = -DWIN32 $(CRYPT_FLAG)
409 LOCDEFS         = -DPERLDLL -DPERL_CORE
410 SUBSYS          = console
411 CXX_FLAG        = -xc++
412
413 LIBC            = -lmsvcrt
414
415 # same libs as MSVC
416 LIBFILES        = $(CRYPT_LIB) $(LIBC) \
417                   -lmoldname -lkernel32 -luser32 -lgdi32 \
418                   -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
419                   -loleaut32 -lnetapi32 -luuid -lwsock32 -lmpr \
420                   -lwinmm -lversion -lodbc32
421
422 .IF  "$(CFG)" == "Debug"
423 OPTIMIZE        = -g -O2 -DDEBUGGING
424 LINK_DBG        = -g
425 .ELSE
426 OPTIMIZE        = -g -O2
427 LINK_DBG        = -g
428 .ENDIF
429
430 CFLAGS          = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
431 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
432 OBJOUT_FLAG     = -o
433 EXEOUT_FLAG     = -o
434 LIBOUT_FLAG     =
435
436 # NOTE: we assume that GCC uses MSVCRT.DLL
437 BUILDOPT        += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
438
439 .ELSE
440
441 CC              = cl
442 LINK32          = link
443 LIB32           = $(LINK32) -lib
444 RSC             = rc
445
446 #
447 # Options
448 #
449
450 INCLUDES        = -I$(COREDIR) -I.\include -I. -I..
451 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
452 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
453 LOCDEFS         = -DPERLDLL -DPERL_CORE
454 SUBSYS          = console
455 CXX_FLAG        = -TP -GX
456
457 .IF "$(USE_PERLCRT)" != "define"
458 LIBC    = msvcrt.lib
459 .ELSE
460 LIBC    = PerlCRT.lib
461 .ENDIF
462
463 PERLEXE_RES     =
464 PERLDLL_RES     =
465
466 .IF  "$(CFG)" == "Debug"
467 .IF "$(CCTYPE)" == "MSVC20"
468 OPTIMIZE        = -Od -MD -Z7 -DDEBUGGING
469 LINK_DBG        = -debug -pdb:none
470 .ELSE
471 # -Zi requires .pdb file(s)
472 #OPTIMIZE       = -Od -MD -Zi -DDEBUGGING
473 #LINK_DBG       = -debug
474 OPTIMIZE        = -O1 -MD -Z7 -DDEBUGGING
475 LINK_DBG        = -debug -debugtype:both -pdb:none
476 .ENDIF
477 .ELSE
478 .IF "$(CFG)" == "Optimize"
479 # -O1 yields smaller code, which turns out to be faster than -O2
480 #OPTIMIZE       = -O2 -MD -DNDEBUG
481 OPTIMIZE        = -O1 -MD -DNDEBUG
482 .ELSE
483 OPTIMIZE        = -Od -MD -DNDEBUG
484 .ENDIF
485 LINK_DBG        = -release
486 .ENDIF
487
488 LIBBASEFILES    = $(CRYPT_LIB) \
489                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
490                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
491                 netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
492                 version.lib odbc32.lib odbccp32.lib
493
494 # we add LIBC here, since we may be using PerlCRT.dll
495 LIBFILES        = $(LIBBASEFILES) $(LIBC)
496
497 CFLAGS          = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
498                 $(PCHFLAGS) $(OPTIMIZE)
499 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
500                 -libpath:"$(INST_COREDIR)" \
501                 -machine:$(PROCESSOR_ARCHITECTURE)
502 OBJOUT_FLAG     = -Fo
503 EXEOUT_FLAG     = -Fe
504 LIBOUT_FLAG     = /out:
505
506 .IF "$(USE_PERLCRT)" != "define"
507 BUILDOPT        += -DPERL_MSVCRT_READFIX
508 .ENDIF
509
510 .ENDIF
511
512 .IF "$(USE_OBJECT)" == "define"
513 OPTIMIZE        += $(CXX_FLAG)
514 BUILDOPT        += -DPERL_OBJECT
515 .ENDIF
516
517 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
518
519 # used to allow local linking flags that are not propogated into Config.pm,
520 # currently unused
521 #   -- BKS, 12-12-1999
522 PRIV_LINK_FLAGS *=
523 BLINK_FLAGS     = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
524
525 #################### do not edit below this line #######################
526 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
527
528 o *= .obj
529 a *= .lib
530
531 LKPRE           = INPUT (
532 LKPOST          = )
533
534 #
535 # Rules
536 #
537
538 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
539
540 .c$(o):
541         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
542
543 .c.i:
544         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
545
546 .y.c:
547         $(NOOP)
548
549 $(o).dll:
550 .IF "$(CCTYPE)" == "BORLAND"
551         $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
552         $(IMPLIB) $(*B).lib $@
553 .ELIF "$(CCTYPE)" == "GCC"
554         $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
555         $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
556 .ELSE
557         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
558             -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
559 .ENDIF
560
561 .rc.res:
562         $(RSC) -i.. $<
563
564 #
565 # various targets
566 MINIPERL        = ..\miniperl.exe
567 MINIDIR         = .\mini
568 PERLEXE         = ..\perl.exe
569 WPERLEXE        = ..\wperl.exe
570 GLOBEXE         = ..\perlglob.exe
571 CONFIGPM        = ..\lib\Config.pm
572 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
573 X2P             = ..\x2p\a2p.exe
574
575 # Nominate a target which causes extensions to be re-built
576 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
577 # on and really only the interface - i.e. the .def file used to export symbols
578 # from the .dll
579 PERLDEP = perldll.def
580
581
582 PL2BAT          = bin\pl2bat.pl
583 GLOBBAT         = bin\perlglob.bat
584
585 UTILS           =                       \
586                 ..\utils\h2ph           \
587                 ..\utils\splain         \
588                 ..\utils\dprofpp        \
589                 ..\utils\perlbug        \
590                 ..\utils\pl2pm          \
591                 ..\utils\c2ph           \
592                 ..\utils\h2xs           \
593                 ..\utils\perldoc        \
594                 ..\utils\perlcc         \
595                 ..\pod\checkpods        \
596                 ..\pod\pod2html         \
597                 ..\pod\pod2latex        \
598                 ..\pod\pod2man          \
599                 ..\pod\pod2text         \
600                 ..\pod\pod2usage        \
601                 ..\pod\podchecker       \
602                 ..\pod\podselect        \
603                 ..\x2p\find2perl        \
604                 ..\x2p\s2p              \
605                 bin\exetype.pl          \
606                 bin\runperl.pl          \
607                 bin\pl2bat.pl           \
608                 bin\perlglob.pl         \
609                 bin\search.pl
610
611 .IF "$(CCTYPE)" == "BORLAND"
612
613 CFGSH_TMPL      = config.bc
614 CFGH_TMPL       = config_H.bc
615
616 .ELIF "$(CCTYPE)" == "GCC"
617
618 CFGSH_TMPL      = config.gc
619 CFGH_TMPL       = config_H.gc
620 PERLIMPLIB      = ..\libperl57$(a)
621
622 .ELSE
623
624 CFGSH_TMPL      = config.vc
625 CFGH_TMPL       = config_H.vc
626
627 .ENDIF
628
629 # makedef.pl must be updated if this changes, and this should normally
630 # only change when there is an incompatible revision of the public API.
631 # XXX so why did we change it from perl56 to perl57?
632 PERLIMPLIB      *= ..\perl57$(a)
633 PERLDLL         = ..\perl57.dll
634
635 XCOPY           = xcopy /f /r /i /d
636 RCOPY           = xcopy /f /r /i /e /d
637 NOOP            = @echo
638
639 #
640 # filenames given to xsubpp must have forward slashes (since it puts
641 # full pathnames in #line strings)
642 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
643                 -C++ -prototypes
644
645 MICROCORE_SRC   =               \
646                 ..\av.c         \
647                 ..\deb.c        \
648                 ..\doio.c       \
649                 ..\doop.c       \
650                 ..\dump.c       \
651                 ..\globals.c    \
652                 ..\gv.c         \
653                 ..\hv.c         \
654                 ..\mg.c         \
655                 ..\op.c         \
656                 ..\perl.c       \
657                 ..\perlapi.c    \
658                 ..\perly.c      \
659                 ..\pp.c         \
660                 ..\pp_ctl.c     \
661                 ..\pp_hot.c     \
662                 ..\pp_sys.c     \
663                 ..\regcomp.c    \
664                 ..\regexec.c    \
665                 ..\run.c        \
666                 ..\scope.c      \
667                 ..\sv.c         \
668                 ..\taint.c      \
669                 ..\toke.c       \
670                 ..\universal.c  \
671                 ..\utf8.c       \
672                 ..\util.c       \
673                 ..\xsutils.c
674
675 EXTRACORE_SRC   += perllib.c
676
677 .IF "$(PERL_MALLOC)" == "define"
678 EXTRACORE_SRC   += ..\malloc.c
679 .ENDIF
680
681 .IF "$(USE_OBJECT)" != "define"
682 EXTRACORE_SRC   += ..\perlio.c
683 .ENDIF
684
685 WIN32_SRC       =               \
686                 .\win32.c       \
687                 .\win32sck.c    \
688                 .\win32thread.c
689
690 .IF "$(CRYPT_SRC)" != ""
691 WIN32_SRC       += .\$(CRYPT_SRC)
692 .ENDIF
693
694 DLL_SRC         = $(DYNALOADER).c
695
696 X2P_SRC         =               \
697                 ..\x2p\a2p.c    \
698                 ..\x2p\hash.c   \
699                 ..\x2p\str.c    \
700                 ..\x2p\util.c   \
701                 ..\x2p\walk.c
702
703 CORE_NOCFG_H    =               \
704                 ..\av.h         \
705                 ..\cop.h        \
706                 ..\cv.h         \
707                 ..\dosish.h     \
708                 ..\embed.h      \
709                 ..\form.h       \
710                 ..\gv.h         \
711                 ..\handy.h      \
712                 ..\hv.h         \
713                 ..\iperlsys.h   \
714                 ..\mg.h         \
715                 ..\nostdio.h    \
716                 ..\op.h         \
717                 ..\opcode.h     \
718                 ..\perl.h       \
719                 ..\perlapi.h    \
720                 ..\perlsdio.h   \
721                 ..\perlsfio.h   \
722                 ..\perly.h      \
723                 ..\pp.h         \
724                 ..\proto.h      \
725                 ..\regexp.h     \
726                 ..\scope.h      \
727                 ..\sv.h         \
728                 ..\thread.h     \
729                 ..\unixish.h    \
730                 ..\utf8.h       \
731                 ..\util.h       \
732                 ..\warnings.h   \
733                 ..\XSUB.h       \
734                 ..\EXTERN.h     \
735                 ..\perlvars.h   \
736                 ..\intrpvar.h   \
737                 ..\thrdvar.h    \
738                 .\include\dirent.h      \
739                 .\include\netdb.h       \
740                 .\include\sys\socket.h  \
741                 .\win32.h
742
743 CORE_H          = $(CORE_NOCFG_H) .\config.h
744
745 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
746 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
747 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
748 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
749 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
750 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
751 X2P_OBJ         = $(X2P_SRC:db:+$(o))
752
753 PERLDLL_OBJ     = $(CORE_OBJ)
754 PERLEXE_OBJ     = perlmain$(o)
755
756 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
757
758 .IF "$(USE_SETARGV)" != ""
759 SETARGV_OBJ     = setargv$(o)
760 .ENDIF
761
762 DYNAMIC_EXT     = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
763                 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
764                 Sys/Hostname Storable Filter/Util/Call Encode \
765                 Digest/MD5 PerlIO/Scalar MIME/Base64
766 STATIC_EXT      = DynaLoader
767 NONXS_EXT       = Errno
768
769 POD2HTML        = $(PODDIR)\pod2html
770 POD2MAN         = $(PODDIR)\pod2man
771 POD2LATEX       = $(PODDIR)\pod2latex
772 POD2TEXT        = $(PODDIR)\pod2text
773
774 # vars must be separated by "\t+~\t+", since we're using the tempfile
775 # version of config_sh.pl (we were overflowing someone's buffer by
776 # trying to fit them all on the command line)
777 #       -- BKS 10-17-1999
778 CFG_VARS        =                                       \
779                 INST_DRV=$(INST_DRV)            ~       \
780                 INST_TOP=$(INST_TOP:s/\/\\/)    ~       \
781                 INST_VER=$(INST_VER:s/\/\\/)    ~       \
782                 INST_ARCH=$(INST_ARCH)          ~       \
783                 archname=$(ARCHNAME)            ~       \
784                 cc=$(CC)                        ~       \
785                 ld=$(LINK32)                    ~       \
786                 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT)      ~       \
787                 cf_email=$(EMAIL)               ~       \
788                 d_crypt=$(D_CRYPT)              ~       \
789                 d_mymalloc=$(PERL_MALLOC)       ~       \
790                 libs=$(LIBFILES:f)              ~       \
791                 incpath=$(CCINCDIR:s/\/\\/)     ~       \
792                 libperl=$(PERLIMPLIB:f)         ~       \
793                 libpth=$(CCLIBDIR:s/\/\\/);$(EXTRALIBDIRS:s/\/\\/)      ~       \
794                 libc=$(LIBC)                    ~       \
795                 make=dmake                      ~       \
796                 _o=$(o) obj_ext=$(o)            ~       \
797                 _a=$(a) lib_ext=$(a)            ~       \
798                 static_ext=$(STATIC_EXT)        ~       \
799                 dynamic_ext=$(DYNAMIC_EXT)      ~       \
800                 nonxs_ext=$(NONXS_EXT)          ~       \
801                 use5005threads=$(USE_5005THREADS)       ~       \
802                 useithreads=$(USE_ITHREADS)     ~       \
803                 usethreads=$(USE_5005THREADS)   ~       \
804                 usemultiplicity=$(USE_MULTI)    ~       \
805                 useperlio=$(USE_PERLIO)         ~       \
806                 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/)                ~       \
807                 optimize=$(OPTIMIZE)
808
809 #
810 # set up targets varying between Win95 and WinNT builds
811 #
812
813 .IF "$(IS_WIN95)" == "define"
814 MK2             = .\makefile.95
815 RIGHTMAKE       = __switch_makefiles
816 NOOP            = @rem
817 .ELSE
818 MK2             = __not_needed
819 RIGHTMAKE       =
820 .ENDIF
821
822 #
823 # Top targets
824 #
825
826 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2)          \
827         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(PERLEXE)  \
828         $(X2P) Extensions 
829
830 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
831
832 #----------------------------------------------------------------
833
834 #-------------------- BEGIN Win95 SPECIFIC ----------------------
835
836 # this target is a jump-off point for Win95
837 #  1. it switches to the Win95-specific makefile if it exists
838 #     (__do_switch_makefiles)
839 #  2. it prints a message when the Win95-specific one finishes (__done)
840 #  3. it then kills this makefile by trying to make __no_such_target
841
842 __switch_makefiles: __do_switch_makefiles __done __no_such_target
843
844 __do_switch_makefiles:
845 .IF "$(NOTFIRST)" != "true"
846         if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
847 .ELSE
848         $(NOOP)
849 .ENDIF
850
851 .IF "$(NOTFIRST)" != "true"
852 __done:
853         @echo Build process complete. Ignore any errors after this message.
854         @echo Run "dmake test" to test and "dmake install" to install
855
856 .ELSE
857 # dummy targets for Win95-specific makefile
858
859 __done:
860         $(NOOP)
861
862 __no_such_target:
863         $(NOOP)
864
865 .ENDIF
866
867 # This target is used to generate the new makefile (.\makefile.95) for Win95
868
869 .\makefile.95: .\makefile.mk
870         $(MINIPERL) genmk95.pl makefile.mk $(MK2)
871
872 #--------------------- END Win95 SPECIFIC ---------------------
873
874 # a blank target for when builds don't need to do certain things
875 # this target added for Win95 port but used to keep the WinNT port able to
876 # use this file
877 __not_needed:
878         $(NOOP)
879
880 $(GLOBEXE) : perlglob$(o)
881 .IF "$(CCTYPE)" == "BORLAND"
882         $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
883         $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
884             "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
885 .ELIF "$(CCTYPE)" == "GCC"
886         $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
887 .ELSE
888         $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
889             perlglob$(o) setargv$(o)
890 .ENDIF
891
892 perlglob$(o)  : perlglob.c
893
894 config.w32 : $(CFGSH_TMPL)
895         copy $(CFGSH_TMPL) config.w32
896
897 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
898         -del /f config.h
899         copy $(CFGH_TMPL) config.h
900
901 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL
902         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
903             $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
904
905 # this target is for when changes to the main config.sh happen
906 # edit config.{b,v,g}c and make this target once for each supported
907 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
908 regen_config_h:
909         perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
910             $(CFGSH_TMPL) > ..\config.sh
911         -cd .. && del /f perl.exe
912         cd .. && perl configpm
913         -del /f $(CFGH_TMPL)
914         -mkdir $(COREDIR)
915         -perl -I..\lib config_h.PL "INST_VER=$(INST_VER)"
916         rename config.h $(CFGH_TMPL)
917
918 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
919         cd .. && miniperl configpm
920         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
921         $(XCOPY) ..\*.h $(COREDIR)\*.*
922         $(XCOPY) *.h $(COREDIR)\*.*
923         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
924         $(RCOPY) include $(COREDIR)\*.*
925         $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
926             || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
927
928 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
929 .IF "$(CCTYPE)" == "BORLAND"
930         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
931             @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
932 .ELIF "$(CCTYPE)" == "GCC"
933         $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
934             $(mktmp $(LKPRE) $(MINI_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
935 .ELSE
936         $(LINK32) -subsystem:console -out:$@ \
937             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,\\))
938 .ENDIF
939
940 $(MINIDIR) :
941         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
942
943 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
944         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
945
946 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
947         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
948
949 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
950 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
951 # unless the .IF is true), so instead we use a .ELSE with the default.
952 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
953
954 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
955 .IF "$(USE_IMP_SYS)$(USE_OBJECT)" == "defineundef"
956         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
957 .ELSE
958         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
959 .ENDIF
960
961 # 1. we don't want to rebuild miniperl.exe when config.h changes
962 # 2. we don't want to rebuild miniperl.exe with non-default config.h
963 $(MINI_OBJ)     : $(CORE_NOCFG_H)
964
965 $(WIN32_OBJ)    : $(CORE_H)
966 $(CORE_OBJ)     : $(CORE_H)
967 $(X2P_OBJ)      : $(CORE_H)
968
969 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
970         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
971         $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
972
973 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
974 .IF "$(CCTYPE)" == "BORLAND"
975         $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
976             @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,\\)\n \
977                 $@,\n \
978                 $(LIBFILES)\n \
979                 perldll.def\n)
980         $(IMPLIB) $*.lib $@
981 .ELIF "$(CCTYPE)" == "GCC"
982         $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
983             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
984         dlltool --output-lib $(PERLIMPLIB) \
985                 --dllname $(PERLDLL:b).dll \
986                 --def perldll.def \
987                 --base-file perl.base \
988                 --output-exp perl.exp
989         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
990             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) \
991                 perl.exp $(LKPOST))
992 .ELSE
993         $(LINK32) -dll -def:perldll.def -out:$@ \
994             @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
995                 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,\\))
996 .ENDIF
997         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
998
999 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1000         cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1001
1002 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1003         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1004
1005 ..\x2p\hash$(o) : ..\x2p\hash.c
1006         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1007
1008 ..\x2p\str$(o) : ..\x2p\str.c
1009         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1010
1011 ..\x2p\util$(o) : ..\x2p\util.c
1012         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1013
1014 ..\x2p\walk$(o) : ..\x2p\walk.c
1015         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1016
1017 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1018         $(MINIPERL) ..\x2p\find2perl.PL
1019         $(MINIPERL) ..\x2p\s2p.PL
1020 .IF "$(CCTYPE)" == "BORLAND"
1021         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1022             @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
1023 .ELIF "$(CCTYPE)" == "GCC"
1024         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1025             $(mktmp $(LKPRE) $(X2P_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1026 .ELSE
1027         $(LINK32) -subsystem:console -out:$@ \
1028             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,\\))
1029 .ENDIF
1030
1031 perlmain.c : runperl.c
1032         copy runperl.c perlmain.c
1033
1034 perlmain$(o) : perlmain.c
1035         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1036
1037 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1038 .IF "$(CCTYPE)" == "BORLAND"
1039         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1040             @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,\\)\n \
1041             $(@:s,\,\\),\n \
1042             $(PERLIMPLIB) $(LIBFILES)\n)
1043 .ELIF "$(CCTYPE)" == "GCC"
1044         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1045             $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1046 .ELSE
1047         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1048             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1049 .ENDIF
1050         copy $(PERLEXE) $(WPERLEXE)
1051         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1052         copy splittree.pl ..
1053         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1054
1055 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1056         if not exist $(AUTODIR) mkdir $(AUTODIR)
1057         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1058         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1059         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1060         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1061         cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1062         $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1063
1064 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1065         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1066
1067 #----------------------------------------------------------------------------------
1068 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM) 
1069         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
1070
1071 #----------------------------------------------------------------------------------
1072
1073
1074 doc: $(PERLEXE)
1075         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1076             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1077             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1078
1079 utils: $(PERLEXE) $(X2P)
1080         cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1081         copy ..\README.aix ..\pod\perlaix.pod
1082         copy ..\README.amiga ..\pod\perlamiga.pod
1083         copy ..\README.cygwin ..\pod\perlcygwin.pod
1084         copy ..\README.dos ..\pod\perldos.pod
1085         copy ..\README.epoc ..\pod\perlepoc.pod
1086         copy ..\README.hpux ..\pod\perlhpux.pod
1087         copy ..\README.machten ..\pod\perlmachten.pod
1088         copy ..\README.os2 ..\pod\perlos2.pod
1089         copy ..\README.os390 ..\pod\perlos390.pod
1090         copy ..\README.vmesa ..\pod\perlvmesa.pod
1091         copy ..\README.bs2000 ..\pod\perlbs2000.pod
1092         copy ..\README.solaris ..\pod\perlsolaris.pod
1093         copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1094         copy ..\README.vos ..\pod\perlvos.pod
1095         copy ..\README.win32 ..\pod\perlwin32.pod
1096         cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1097         cd ..\lib && $(PERLEXE) lib_pm.PL
1098         $(PERLEXE) $(PL2BAT) $(UTILS)
1099
1100 distclean: clean
1101         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1102                 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1103         -del /f *.def *.map
1104         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1105         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1106         -del /f $(LIBDIR)\XSLoader.pm
1107         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1108         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
1109         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1110         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1111         -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
1112         -del /f $(LIBDIR)\PerlIO\Scalar.pm
1113         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1114         -del /f $(LIBDIR)\File\Glob.pm
1115         -del /f $(LIBDIR)\Storable.pm
1116         -del /f $(LIBDIR)\Filter\Util\Call\Call.pm
1117         -del /f $(LIBDIR)\Digest\MD5.pm
1118         -del /f $(LIBDIR)\MIME\Base64\Base64.pm
1119         -del /f $(LIBDIR)\MIME\Base64\QuotedPrint.pm
1120         -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
1121         -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
1122         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
1123         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
1124         -if exist $(LIBDIR)\Filter\Util\Call rmdir /s /q $(LIBDIR)\Filter\Util\Call || rmdir /s $(LIBDIR)\Filter
1125         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util || rmdir /s $(LIBDIR)\Filter
1126         -if exist $(LIBDIR)\Digest\MD5 rmdir /s /q $(LIBDIR)\Digest\MD5 || rmdir /s $(LIBDIR)\Digest\MD5
1127         -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest || rmdir /s $(LIBDIR)\Digest
1128         -if exist $(LIBDIR)\MIME\Base64 rmdir /s /q $(LIBDIR)\MIME\Base64 || rmdir /s $(LIBDIR)\MIME\Base64
1129         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME || rmdir /s $(LIBDIR)\MIME
1130         -del /f $(PODDIR)\*.html
1131         -del /f $(PODDIR)\*.bat
1132         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc \
1133             dprofpp *.bat
1134         -cd ..\x2p && del /f find2perl s2p *.bat
1135         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1136         -del /f $(CONFIGPM)
1137         -del /f bin\*.bat
1138         -cd $(EXTDIR) && del /s *$(a) *.def *.map *.pdb *.bs Makefile *$(o) \
1139             pm_to_blib
1140         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
1141         -if exist $(COREDIR) rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
1142
1143 install : all installbare installhtml
1144
1145 installbare : $(RIGHTMAKE) utils
1146         $(PERLEXE) ..\installperl
1147         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1148         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1149         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1150
1151 installhtml : doc
1152         $(RCOPY) html\*.* $(INST_HTML)\*.*
1153
1154 inst_lib : $(CONFIGPM)
1155         copy splittree.pl ..
1156         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1157         $(RCOPY) ..\lib $(INST_LIB)\*.*
1158
1159 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
1160         $(XCOPY) $(MINIPERL) ..\t\perl.exe
1161 .IF "$(CCTYPE)" == "BORLAND"
1162         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1163 .ELSE
1164         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1165 .ENDIF
1166         attrib -r ..\t\*.*
1167         copy test ..\t
1168         cd ..\t && \
1169         $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1170
1171 test-prep : all utils
1172         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1173         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1174 .IF "$(CCTYPE)" == "BORLAND"
1175         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1176 .ELSE
1177         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1178 .ENDIF
1179
1180 test : $(RIGHTMAKE) test-prep
1181         cd ..\t && $(PERLEXE) -I..\lib harness
1182
1183 test-notty : test-prep
1184         set PERL_SKIP_TTY_TEST=1 && \
1185             cd ..\t && $(PERLEXE) -I.\lib harness
1186
1187 test-wide : test-prep
1188         set HARNESS_PERL_SWITCHES=-C && \
1189             cd ..\t && $(PERLEXE) -I..\lib harness
1190
1191 test-wide-notty : test-prep
1192         set PERL_SKIP_TTY_TEST=1 && \
1193             set HARNESS_PERL_SWITCHES=-C && \
1194             cd ..\t && $(PERLEXE) -I..\lib harness
1195
1196 clean :
1197         -@erase miniperlmain$(o)
1198         -@erase $(MINIPERL)
1199         -@erase perlglob$(o)
1200         -@erase perlmain$(o)
1201         -@erase config.w32
1202         -@erase /f config.h
1203         -@erase $(GLOBEXE)
1204         -@erase $(PERLEXE)
1205         -@erase $(WPERLEXE)
1206         -@erase $(PERLDLL)
1207         -@erase $(CORE_OBJ)
1208         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
1209         -@erase $(WIN32_OBJ)
1210         -@erase $(DLL_OBJ)
1211         -@erase $(X2P_OBJ)
1212         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1213         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1214         -@erase ..\x2p\*.exe ..\x2p\*.bat
1215         -@erase *.ilk
1216         -@erase *.pdb
1217
1218 # Handy way to run perlbug -ok without having to install and run the
1219 # installed perlbug. We don't re-run the tests here - we trust the user.
1220 # Please *don't* use this unless all tests pass.
1221 # If you want to report test failures, use "dmake nok" instead.
1222 ok: utils
1223         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1224
1225 okfile: utils
1226         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1227
1228 nok: utils
1229         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1230
1231 nokfile: utils
1232         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok