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