remove VIRTUAL tag, PERL_OBJECT doesn't need it anymore
[p5sagit/p5-mst-13.2.git] / win32 / Makefile
CommitLineData
e7083a8c 1#
2# Makefile to build perl on Windows NT using Microsoft NMAKE.
68dc0745 3#
4# This is set up to build a perl.exe that runs off a shared library
5# (perl.dll). Also makes individual DLLs for the XS extensions.
e7083a8c 6#
7
8##
69e1fe5e 9## Make sure you read README.win32 *before* you mess with anything here!
10##
11
12##
e7083a8c 13## Build configuration. Edit the values below to suit your needs.
14##
15
137443ea 16#
17# Set these to wherever you want "nmake install" to put your
18# newly built perl.
e7083a8c 19#
eb480a0b 20INST_DRV = c:
e5a95ffb 21INST_TOP = $(INST_DRV)\perl
22
e7083a8c 23#
e5a95ffb 24# Comment this out if you DON'T want your perl installation to be versioned.
25# This means that the new installation will overwrite any files from the
26# old installation at the same INST_TOP location. Leaving it enabled is
27# the safest route, as perl adds the extra version directory to all the
28# locations it installs files to. If you disable it, an alternative
29# versioned installation can be obtained by setting INST_TOP above to a
30# path that includes an arbitrary version string.
e7083a8c 31#
52b0428e 32INST_VER = \5.00563
d07c2202 33
34#
0cb96387 35# Comment this out if you DON'T want your perl installation to have
36# architecture specific components. This means that architecture-
37# specific files will be installed along with the architecture-neutral
38# files. Leaving it enabled is safer and more flexible, in case you
39# want to build multiple flavors of perl and install them together in
40# the same location. Commenting it out gives you a simpler
41# installation that is easier to understand for beginners.
42#
51371543 43INST_ARCH = \$(ARCHNAME)
0cb96387 44
45#
c5be433b 46# XXX WARNING! This option currently undergoing changes. May be broken.
47#
d07c2202 48# uncomment to enable threads-capabilities
e7083a8c 49#
eb480a0b 50#USE_THREADS = define
137443ea 51
c90c0ff4 52#
c5be433b 53# XXX WARNING! This option currently undergoing changes. May be broken.
54#
b86a2fa7 55# uncomment to enable multiple interpreters
56#
57#USE_MULTI = define
58
59#
c5be433b 60# XXX WARNING! This option currently undergoing changes. May be broken.
61#
62# uncomment next line if you want to use the perl object
63# Currently, this cannot be enabled if you ask for threads above
64#
65#USE_OBJECT = define
66
67#
7fac1903 68# uncomment one of the following lines if you are using either
69# Visual C++ 2.x or Visual C++ 6.x (aka Visual Studio 98)
e7083a8c 70#
eb480a0b 71#CCTYPE = MSVC20
7fac1903 72#CCTYPE = MSVC60
c90c0ff4 73
74#
75# uncomment next line if you want debug version of perl (big,slow)
e7083a8c 76#
eb480a0b 77#CFG = Debug
137443ea 78
d484a829 79#
66aa1127 80# uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
e9ee4811 81# Highly recommended. It has patches that fix known bugs in MSVCRT.DLL.
c5be433b 82# This currently requires VC 5.0 with Service Pack 3 or later.
b89743e8 83# Get it from CPAN at http://www.perl.com/CPAN/authors/id/D/DO/DOUGL/
66aa1127 84# and follow the directions in the package to install.
e7083a8c 85#
86#USE_PERLCRT = define
87
88#
baed7233 89# uncomment to enable linking with setargv.obj under the Visual C
90# compiler. Setting this options enables perl to expand wildcards in
91# arguments, but it may be harder to use alternate methods like
92# File::DosGlob that are more powerful. This option is supported only with
93# Visual C.
94#
95#USE_SETARGV = define
96
97#
26618a56 98# if you have the source for des_fcrypt(), uncomment this and make sure the
8d9b2e3c 99# file exists (see README.win32). File should be located in the same
ff95b63e 100# directory as this file.
e7083a8c 101#
2d77217b 102#CRYPT_SRC = fcrypt.c
26618a56 103
104#
105# if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
106# library, uncomment this, and make sure the library exists (see README.win32)
a1dd9325 107# Specify the full pathname of the library.
e7083a8c 108#
2d77217b 109#CRYPT_LIB = fcrypt.lib
26618a56 110
111#
1c1c7f20 112# set this if you wish to use perl's malloc
113# WARNING: Turning this on/off WILL break binary compatibility with extensions
5fd76c3e 114# you may have compiled with/without it. Be prepared to recompile all
115# extensions if you change the default. Currently, this cannot be enabled
c5be433b 116# if you ask for USE_OBJECT above.
e7083a8c 117#
01f988be 118#PERL_MALLOC = define
1c1c7f20 119
120#
3e3baf6d 121# set the install locations of the compiler include/libraries
69e1fe5e 122# Running VCVARS32.BAT is *required* when using Visual C.
95883bf3 123# Some versions of Visual C don't define MSVCDIR in the environment,
80252599 124# so you may have to set CCHOME explicitly (spaces in the path name should
125# not be quoted)
a8deba26 126#
eb480a0b 127#CCHOME = f:\msvc20
128CCHOME = $(MSVCDIR)
129CCINCDIR = $(CCHOME)\include
130CCLIBDIR = $(CCHOME)\lib
3e3baf6d 131
132#
e02fdbd2 133# additional compiler flags can be specified here.
134#
135# Adding -DPERL_POLLUTE enables support for old symbols, at the expense of
136# extreme pollution. You most probably want this if you're compiling modules
137# from CPAN, or other such serious uses of this experimental perl release.
138# We don't enable this by default because we want the modules to get fixed
139# instead of clinging to shortcuts like this one.
140#
c5be433b 141#BUILDOPT = $(BUILDOPT) -DPERL_POLLUTE
e02fdbd2 142
143#
a7089531 144# enable this to test the File::Glob implementation of CORE::glob
145#
146#BUILDOPT = $(BUILDOPT) -DPERL_INTERNAL_GLOB
147
148#
80252599 149# specify semicolon-separated list of extra directories that modules will
150# look for libraries (spaces in path names need not be quoted)
fa4efe8e 151#
152EXTRALIBDIRS =
153
154#
d484a829 155# set this to your email address (perl will guess a value from
156# from your loginname and your hostname, which may not be right)
e7083a8c 157#
eb480a0b 158#EMAIL =
d484a829 159
e7083a8c 160##
161## Build configuration ends.
162##
163
137443ea 164##################### CHANGE THESE ONLY IF YOU MUST #####################
165
26618a56 166!IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
eb480a0b 167D_CRYPT = undef
26618a56 168!ELSE
eb480a0b 169D_CRYPT = define
170CRYPT_FLAG = -DHAVE_DES_FCRYPT
171!ENDIF
172
c5be433b 173!IF "$(USE_OBJECT)" == "define"
eb480a0b 174PERL_MALLOC = undef
e2f80c04 175USE_THREADS = undef
b86a2fa7 176USE_MULTI = undef
26618a56 177!ENDIF
178
1c1c7f20 179!IF "$(PERL_MALLOC)" == ""
180PERL_MALLOC = undef
181!ENDIF
182
eb480a0b 183!IF "$(USE_THREADS)" == ""
184USE_THREADS = undef
185!ENDIF
186
b86a2fa7 187!IF "$(USE_MULTI)" == ""
188USE_MULTI = undef
189!ENDIF
190
3bb366e1 191!IF "$(USE_OBJECT)" == ""
192USE_OBJECT = undef
193!ENDIF
194
195!IF "$(USE_MULTI)$(USE_THREADS)$(USE_OBJECT)" != "undefundefundef"
0b94c7bb 196BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
197!ENDIF
198
d07c2202 199!IF "$(PROCESSOR_ARCHITECTURE)" == ""
200PROCESSOR_ARCHITECTURE = x86
201!ENDIF
202
c5be433b 203!IF "$(USE_OBJECT)" == "define"
b83ac84c 204ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-object
205!ELSE
924b3ec4 206!IF "$(USE_THREADS)" == "define"
d07c2202 207ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-thread
924b3ec4 208!ELSE
c5be433b 209!IF "$(USE_MULTI)" == "define"
210ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
211!ELSE
924b3ec4 212ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
d07c2202 213!ENDIF
b83ac84c 214!ENDIF
c5be433b 215!ENDIF
d07c2202 216
7fac1903 217# Visual Studio 98 specific
218!IF "$(CCTYPE)" == "MSVC60"
219
220# VC 6.0 can load the socket dll on demand. Makes the test suite
221# run in about 10% less time.
222DELAYLOAD = -DELAYLOAD:wsock32.dll delayimp.lib
223
224# VC 6.0 seems capable of compiling perl correctly with optimizations
225# enabled. Anything earlier fails tests.
226!IF "$(CFG)" == ""
227CFG = Optimize
228!ENDIF
229!ENDIF
230
28004758 231ARCHDIR = ..\lib\$(ARCHNAME)
d07c2202 232COREDIR = ..\lib\CORE
eb480a0b 233AUTODIR = ..\lib\auto
28004758 234LIBDIR = ..\lib
235EXTDIR = ..\ext
236PODDIR = ..\pod
237EXTUTILSDIR = $(LIBDIR)\ExtUtils
238
239#
240INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
241INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
242INST_LIB = $(INST_TOP)$(INST_VER)\lib
243INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
244INST_COREDIR = $(INST_ARCHLIB)\CORE
245INST_POD = $(INST_LIB)\pod
246INST_HTML = $(INST_POD)\html
d07c2202 247
137443ea 248#
249# Programs to compile, build .lib files and link
250#
68dc0745 251
045453ec 252CC = cl
253LINK32 = link
eb480a0b 254LIB32 = $(LINK32) -lib
255
68dc0745 256#
137443ea 257# Options
258#
eb480a0b 259
af883608 260RUNTIME = -MD
9036c72f 261INCLUDES = -I$(COREDIR) -I.\include -I. -I..
eb480a0b 262#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
c5be433b 263DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
eb480a0b 264LOCDEFS = -DPERLDLL -DPERL_CORE
265SUBSYS = console
266CXX_FLAG = -TP -GX
137443ea 267
e7083a8c 268!IF "$(USE_PERLCRT)" == ""
269! IF "$(CFG)" == "Debug"
270PERLCRTLIBC = msvcrtd.lib
271! ELSE
272PERLCRTLIBC = msvcrt.lib
273! ENDIF
274!ELSE
275! IF "$(CFG)" == "Debug"
276PERLCRTLIBC = PerlCRTD.lib
277! ELSE
278PERLCRTLIBC = PerlCRT.lib
279! ENDIF
280!ENDIF
281
137443ea 282!IF "$(RUNTIME)" == "-MD"
e7083a8c 283LIBC = $(PERLCRTLIBC)
137443ea 284!ELSE
eb480a0b 285LIBC = libcmt.lib
137443ea 286!ENDIF
287
288!IF "$(CFG)" == "Debug"
289! IF "$(CCTYPE)" == "MSVC20"
eb480a0b 290OPTIMIZE = -Od $(RUNTIME) -Z7 -D_DEBUG -DDEBUGGING
137443ea 291! ELSE
3dfd1da1 292OPTIMIZE = -Od $(RUNTIME)d -Zi -D_DEBUG -DDEBUGGING
137443ea 293! ENDIF
eb480a0b 294LINK_DBG = -debug -pdb:none
137443ea 295!ELSE
74593e1f 296! IF "$(CFG)" == "Optimize"
c5be433b 297# -O1 yields smaller code, which turns out to be faster than -O2
298#OPTIMIZE = -O2 $(RUNTIME) -DNDEBUG
299OPTIMIZE = -O1 $(RUNTIME) -DNDEBUG
137443ea 300! ELSE
af883608 301OPTIMIZE = -Od $(RUNTIME) -DNDEBUG
137443ea 302! ENDIF
eb480a0b 303LINK_DBG = -release
304!ENDIF
305
c5be433b 306!IF "$(USE_OBJECT)" == "define"
eb480a0b 307OPTIMIZE = $(OPTIMIZE) $(CXX_FLAG)
c5be433b 308BUILDOPT = $(BUILDOPT) -DPERL_OBJECT
137443ea 309!ENDIF
68dc0745 310
7fac1903 311LIBBASEFILES = $(DELAYLOAD) $(CRYPT_LIB) \
312 oldnames.lib kernel32.lib user32.lib gdi32.lib \
eb480a0b 313 winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib \
314 oleaut32.lib netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
315 version.lib odbc32.lib odbccp32.lib
3e3baf6d 316
e7083a8c 317# we add LIBC here, since we may be using PerlCRT.dll
318LIBFILES = $(LIBBASEFILES) $(LIBC)
319
eb480a0b 320CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
321 $(PCHFLAGS) $(OPTIMIZE)
28004758 322LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
323 -libpath:"$(INST_COREDIR)" \
324 -machine:$(PROCESSOR_ARCHITECTURE)
eb480a0b 325OBJOUT_FLAG = -Fo
326EXEOUT_FLAG = -Fe
327
c5be433b 328CFLAGS_O = $(CFLAGS) $(BUILDOPT)
137443ea 329
330#################### do not edit below this line #######################
331############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
332
d56e6723 333o = .obj
334
137443ea 335#
336# Rules
337#
137443ea 338
d56e6723 339.SUFFIXES : .c $(o) .dll .lib .exe
340
341.c$(o):
eb480a0b 342 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
343
344.y.c:
345 $(NOOP)
137443ea 346
d56e6723 347$(o).dll:
3e3baf6d 348 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
dc050285 349 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
68dc0745 350
68dc0745 351#
68dc0745 352# various targets
c5be433b 353!IF "$(USE_OBJECT)" == "define"
3075ddba 354PERLIMPLIB = ..\perl56.lib
355PERLDLL = ..\perl56.dll
eb480a0b 356!ELSE
357PERLIMPLIB = ..\perl.lib
358PERLDLL = ..\perl.dll
26618a56 359!ENDIF
360
eb480a0b 361MINIPERL = ..\miniperl.exe
362MINIDIR = .\mini
363PERLEXE = ..\perl.exe
364GLOBEXE = ..\perlglob.exe
365CONFIGPM = ..\lib\Config.pm
366MINIMOD = ..\lib\ExtUtils\Miniperl.pm
367X2P = ..\x2p\a2p.exe
368
369PL2BAT = bin\pl2bat.pl
370GLOBBAT = bin\perlglob.bat
371
4a71ed0c 372UTILS = \
373 ..\utils\h2ph \
374 ..\utils\splain \
95667ae4 375 ..\utils\dprofpp \
4a71ed0c 376 ..\utils\perlbug \
377 ..\utils\pl2pm \
378 ..\utils\c2ph \
379 ..\utils\h2xs \
380 ..\utils\perldoc \
381 ..\utils\pstruct \
382 ..\utils\perlcc \
383 ..\pod\checkpods \
384 ..\pod\pod2html \
385 ..\pod\pod2latex \
386 ..\pod\pod2man \
387 ..\pod\pod2text \
360aca43 388 ..\pod\pod2usage \
389 ..\pod\podchecker \
390 ..\pod\podselect \
4a71ed0c 391 ..\x2p\find2perl \
392 ..\x2p\s2p \
4a71ed0c 393 bin\runperl.pl \
394 bin\pl2bat.pl \
395 bin\perlglob.pl \
396 bin\search.pl
397
eb480a0b 398MAKE = nmake -nologo
399
400CFGSH_TMPL = config.vc
401CFGH_TMPL = config_H.vc
e7083a8c 402
403!IF "$(USE_PERLCRT)" == ""
eb480a0b 404PERL95EXE = ..\perl95.exe
e7083a8c 405!ENDIF
eb480a0b 406
407XCOPY = xcopy /f /r /i /d
408RCOPY = xcopy /f /r /i /e /d
409NOOP = @echo
410NULL =
1c1c7f20 411
68dc0745 412#
413# filenames given to xsubpp must have forward slashes (since it puts
414# full pathnames in #line strings)
eb480a0b 415XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
416 -C++ -prototypes
417
852c2e52 418MICROCORE_SRC = \
eb480a0b 419 ..\av.c \
eb480a0b 420 ..\deb.c \
421 ..\doio.c \
422 ..\doop.c \
423 ..\dump.c \
424 ..\globals.c \
425 ..\gv.c \
426 ..\hv.c \
427 ..\mg.c \
428 ..\op.c \
429 ..\perl.c \
51371543 430 ..\perlapi.c \
eb480a0b 431 ..\perly.c \
432 ..\pp.c \
433 ..\pp_ctl.c \
434 ..\pp_hot.c \
435 ..\pp_sys.c \
436 ..\regcomp.c \
437 ..\regexec.c \
438 ..\run.c \
439 ..\scope.c \
440 ..\sv.c \
441 ..\taint.c \
442 ..\toke.c \
443 ..\universal.c \
a176fa2a 444 ..\utf8.c \
349fd7b7 445 ..\util.c \
446 ..\xsutils.c
eb480a0b 447
0cb96387 448EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
449
eb480a0b 450!IF "$(PERL_MALLOC)" == "define"
852c2e52 451EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
eb480a0b 452!ENDIF
453
c5be433b 454!IF "$(USE_OBJECT)" != "define"
852c2e52 455EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
eb480a0b 456!ENDIF
457
458WIN32_SRC = \
459 .\win32.c \
460 .\win32sck.c
461
462!IF "$(USE_THREADS)" == "define"
463WIN32_SRC = $(WIN32_SRC) .\win32thread.c
464!ENDIF
465
8d9b2e3c 466!IF "$(CRYPT_SRC)" != ""
467WIN32_SRC = $(WIN32_SRC) .\$(CRYPT_SRC)
468!ENDIF
469
eb480a0b 470PERL95_SRC = \
471 perl95.c \
472 win32mt.c \
473 win32sckmt.c
474
a1dd9325 475!IF "$(CRYPT_SRC)" != ""
8d9b2e3c 476PERL95_SRC = $(PERL95_SRC) .\$(CRYPT_SRC)
a1dd9325 477!ENDIF
478
eb480a0b 479DLL_SRC = $(DYNALOADER).c
480
eb480a0b 481X2P_SRC = \
482 ..\x2p\a2p.c \
483 ..\x2p\hash.c \
484 ..\x2p\str.c \
485 ..\x2p\util.c \
486 ..\x2p\walk.c
487
852c2e52 488CORE_NOCFG_H = \
eb480a0b 489 ..\av.h \
eb480a0b 490 ..\cop.h \
491 ..\cv.h \
492 ..\dosish.h \
493 ..\embed.h \
494 ..\form.h \
495 ..\gv.h \
496 ..\handy.h \
497 ..\hv.h \
0f4eea8f 498 ..\iperlsys.h \
eb480a0b 499 ..\mg.h \
500 ..\nostdio.h \
501 ..\op.h \
502 ..\opcode.h \
503 ..\perl.h \
51371543 504 ..\perlapi.h \
eb480a0b 505 ..\perlsdio.h \
506 ..\perlsfio.h \
507 ..\perly.h \
508 ..\pp.h \
509 ..\proto.h \
510 ..\regexp.h \
511 ..\scope.h \
512 ..\sv.h \
513 ..\thread.h \
514 ..\unixish.h \
a176fa2a 515 ..\utf8.h \
eb480a0b 516 ..\util.h \
2985053f 517 ..\warnings.h \
eb480a0b 518 ..\XSUB.h \
eb480a0b 519 ..\EXTERN.h \
520 ..\perlvars.h \
521 ..\intrpvar.h \
522 ..\thrdvar.h \
523 .\include\dirent.h \
524 .\include\netdb.h \
525 .\include\sys\socket.h \
526 .\win32.h
527
852c2e52 528CORE_H = $(CORE_NOCFG_H) .\config.h
529
530MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
531CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
eb480a0b 532WIN32_OBJ = $(WIN32_SRC:.c=.obj)
852c2e52 533MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
534 $(MINIDIR)\miniperlmain$(o) \
535 $(MINIDIR)\perlio$(o)
eb480a0b 536MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
537MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
af883608 538PERL95_OBJ = $(PERL95_SRC:.c=.obj)
eb480a0b 539DLL_OBJ = $(DLL_SRC:.c=.obj)
540X2P_OBJ = $(X2P_SRC:.c=.obj)
541
eb480a0b 542PERLDLL_OBJ = $(CORE_OBJ)
543PERLEXE_OBJ = perlmain$(o)
544
eb480a0b 545PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
0cb96387 546#PERLEXE_OBJ = $(PERLEXE_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
547#PERL95_OBJ = $(PERL95_OBJ) DynaLoadmt$(o)
eb480a0b 548
baed7233 549!IF "$(USE_SETARGV)" != ""
550SETARGV_OBJ = setargv$(o)
551!ENDIF
552
823edd99 553DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
4f49e16e 554 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob
eb480a0b 555STATIC_EXT = DynaLoader
eab60bb1 556NONXS_EXT = Errno
eb480a0b 557
558DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
559SOCKET = $(EXTDIR)\Socket\Socket
560FCNTL = $(EXTDIR)\Fcntl\Fcntl
561OPCODE = $(EXTDIR)\Opcode\Opcode
562SDBM_FILE = $(EXTDIR)\SDBM_File\SDBM_File
563IO = $(EXTDIR)\IO\IO
564POSIX = $(EXTDIR)\POSIX\POSIX
565ATTRS = $(EXTDIR)\attrs\attrs
566THREAD = $(EXTDIR)\Thread\Thread
567B = $(EXTDIR)\B\B
823edd99 568RE = $(EXTDIR)\re\re
569DUMPER = $(EXTDIR)\Data\Dumper\Dumper
eab60bb1 570ERRNO = $(EXTDIR)\Errno\Errno
3967c732 571PEEK = $(EXTDIR)\Devel\Peek\Peek
a6c40364 572BYTELOADER = $(EXTDIR)\ByteLoader\ByteLoader
38b3a85b 573DPROF = $(EXTDIR)\Devel\DProf\DProf
4f49e16e 574GLOB = $(EXTDIR)\File\Glob\Glob
eb480a0b 575
576SOCKET_DLL = $(AUTODIR)\Socket\Socket.dll
577FCNTL_DLL = $(AUTODIR)\Fcntl\Fcntl.dll
578OPCODE_DLL = $(AUTODIR)\Opcode\Opcode.dll
579SDBM_FILE_DLL = $(AUTODIR)\SDBM_File\SDBM_File.dll
580IO_DLL = $(AUTODIR)\IO\IO.dll
581POSIX_DLL = $(AUTODIR)\POSIX\POSIX.dll
582ATTRS_DLL = $(AUTODIR)\attrs\attrs.dll
583THREAD_DLL = $(AUTODIR)\Thread\Thread.dll
584B_DLL = $(AUTODIR)\B\B.dll
823edd99 585DUMPER_DLL = $(AUTODIR)\Data\Dumper\Dumper.dll
3967c732 586PEEK_DLL = $(AUTODIR)\Devel\Peek\Peek.dll
15e52e56 587RE_DLL = $(AUTODIR)\re\re.dll
b295d113 588BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll
38b3a85b 589DPROF_DLL = $(AUTODIR)\Devel\DProf\DProf.dll
4f49e16e 590GLOB_DLL = $(AUTODIR)\File\Glob\Glob.dll
eb480a0b 591
eab60bb1 592ERRNO_PM = $(LIBDIR)\Errno.pm
593
eb480a0b 594EXTENSION_C = \
595 $(SOCKET).c \
596 $(FCNTL).c \
597 $(OPCODE).c \
598 $(SDBM_FILE).c \
599 $(IO).c \
600 $(POSIX).c \
601 $(ATTRS).c \
602 $(THREAD).c \
15e52e56 603 $(RE).c \
823edd99 604 $(DUMPER).c \
3967c732 605 $(PEEK).c \
b295d113 606 $(B).c \
38b3a85b 607 $(BYTELOADER).c \
4f49e16e 608 $(DPROF).c \
609 $(GLOB).c
eb480a0b 610
611EXTENSION_DLL = \
612 $(SOCKET_DLL) \
613 $(FCNTL_DLL) \
614 $(OPCODE_DLL) \
615 $(SDBM_FILE_DLL)\
616 $(IO_DLL) \
617 $(POSIX_DLL) \
51aa15f3 618 $(ATTRS_DLL) \
823edd99 619 $(DUMPER_DLL) \
3967c732 620 $(PEEK_DLL) \
b295d113 621 $(B_DLL) \
c5be433b 622 $(RE_DLL) \
623 $(THREAD_DLL) \
38b3a85b 624 $(BYTELOADER_DLL) \
4f49e16e 625 $(DPROF_DLL) \
626 $(GLOB_DLL)
26ca90b6 627
eab60bb1 628EXTENSION_PM = \
629 $(ERRNO_PM)
630
eb480a0b 631POD2HTML = $(PODDIR)\pod2html
632POD2MAN = $(PODDIR)\pod2man
633POD2LATEX = $(PODDIR)\pod2latex
634POD2TEXT = $(PODDIR)\pod2text
635
636CFG_VARS = \
637 "INST_DRV=$(INST_DRV)" \
638 "INST_TOP=$(INST_TOP)" \
e5a95ffb 639 "INST_VER=$(INST_VER)" \
0cb96387 640 "INST_ARCH=$(INST_ARCH)" \
eb480a0b 641 "archname=$(ARCHNAME)" \
642 "cc=$(CC)" \
c5be433b 643 "ccflags=$(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
eb480a0b 644 "cf_email=$(EMAIL)" \
645 "d_crypt=$(D_CRYPT)" \
646 "d_mymalloc=$(PERL_MALLOC)" \
647 "libs=$(LIBFILES)" \
80252599 648 "incpath=$(CCINCDIR:"=\")" \
649 "libperl=$(PERLIMPLIB:..\=)" \
650 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
eb480a0b 651 "libc=$(LIBC)" \
652 "make=nmake" \
653 "static_ext=$(STATIC_EXT)" \
654 "dynamic_ext=$(DYNAMIC_EXT)" \
eab60bb1 655 "nonxs_ext=$(NONXS_EXT)" \
eb480a0b 656 "usethreads=$(USE_THREADS)" \
b86a2fa7 657 "usemultiplicity=$(USE_MULTI)" \
80252599 658 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
659 "optimize=$(OPTIMIZE:"=\")"
924b3ec4 660
137443ea 661#
662# Top targets
663#
0a753a76 664
852c2e52 665all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(PERLEXE) $(PERL95EXE) \
c5be433b 666 $(X2P) $(EXTENSION_DLL) $(EXTENSION_PM)
0a753a76 667
d56e6723 668$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
0a753a76 669
137443ea 670#------------------------------------------------------------
0a753a76 671
eb480a0b 672$(GLOBEXE) : perlglob$(o)
dc050285 673 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
d56e6723 674 perlglob$(o) setargv$(o)
0a753a76 675
d56e6723 676perlglob$(o) : perlglob.c
137443ea 677
3e3baf6d 678config.w32 : $(CFGSH_TMPL)
679 copy $(CFGSH_TMPL) config.w32
680
d55594ae 681.\config.h : $(CFGH_TMPL)
3e3baf6d 682 -del /f config.h
683 copy $(CFGH_TMPL) config.h
684
137443ea 685..\config.sh : config.w32 $(MINIPERL) config_sh.PL
924b3ec4 686 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
137443ea 687
ac4c12e7 688# this target is for when changes to the main config.sh happen
689# edit config.{b,v,g}c and make this target once for each supported
690# compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
691regen_config_h:
692 perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
693 cd ..
694 -del /f perl.exe
695 perl configpm
696 cd win32
697 -del /f $(CFGH_TMPL)
80252599 698 -mkdir $(COREDIR)
e5a95ffb 699 -perl -I..\lib config_h.PL "INST_VER=$(INST_VER)"
ac4c12e7 700 rename config.h $(CFGH_TMPL)
701
83437bec 702$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
137443ea 703 cd .. && miniperl configpm
c90c0ff4 704 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
d07c2202 705 $(XCOPY) ..\*.h $(COREDIR)\*.*
706 $(XCOPY) *.h $(COREDIR)\*.*
15e52e56 707 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
d07c2202 708 $(RCOPY) include $(COREDIR)\*.*
e5a95ffb 709 $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
80252599 710 || $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
137443ea 711
eb480a0b 712$(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
137443ea 713 $(LINK32) -subsystem:console -out:$@ @<<
eb480a0b 714 $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
137443ea 715<<
716
eb480a0b 717$(MINIDIR) :
718 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
719
852c2e52 720$(MINICORE_OBJ) : $(CORE_NOCFG_H)
eb480a0b 721 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ ..\$(*F).c
722
852c2e52 723$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
eb480a0b 724 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
725
852c2e52 726# 1. we don't want to rebuild miniperl.exe when config.h changes
727# 2. we don't want to rebuild miniperl.exe with non-default config.h
728$(MINI_OBJ) : $(CORE_NOCFG_H)
729
eb480a0b 730$(WIN32_OBJ) : $(CORE_H)
731$(CORE_OBJ) : $(CORE_H)
eb480a0b 732$(DLL_OBJ) : $(CORE_H)
733$(PERL95_OBJ) : $(CORE_H)
734$(X2P_OBJ) : $(CORE_H)
0a753a76 735
549a6b10 736perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
737 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
910dfcc8 738 CCTYPE=$(CCTYPE) > perldll.def
0a753a76 739
eb480a0b 740$(PERLDLL): perldll.def $(PERLDLL_OBJ)
137443ea 741 $(LINK32) -dll -def:perldll.def -out:$@ @<<
eb480a0b 742 $(LINK_FLAGS) $(LIBFILES) $(PERLDLL_OBJ)
137443ea 743<<
d07c2202 744 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
137443ea 745
83437bec 746$(MINIMOD) : $(MINIPERL) ..\minimod.pl
747 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
748
eb480a0b 749..\x2p\a2p$(o) : ..\x2p\a2p.c
750 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
751
752..\x2p\hash$(o) : ..\x2p\hash.c
753 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
754
755..\x2p\str$(o) : ..\x2p\str.c
756 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
757
758..\x2p\util$(o) : ..\x2p\util.c
759 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
760
761..\x2p\walk$(o) : ..\x2p\walk.c
762 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
763
764$(X2P) : $(MINIPERL) $(X2P_OBJ)
765 $(MINIPERL) ..\x2p\find2perl.PL
766 $(MINIPERL) ..\x2p\s2p.PL
d07c2202 767 $(LINK32) -subsystem:console -out:$@ @<<
eb480a0b 768 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
d07c2202 769<<
770
83437bec 771perlmain.c : runperl.c
0a753a76 772 copy runperl.c perlmain.c
137443ea 773
d56e6723 774perlmain$(o) : perlmain.c
8957be0a 775 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
137443ea 776
eb480a0b 777$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ)
778 $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) $(LIBFILES) \
baed7233 779 $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB)
0a753a76 780 copy splittree.pl ..
eb480a0b 781 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
0a753a76 782
e7083a8c 783!IF "$(USE_PERLCRT)" == ""
784
3e3baf6d 785perl95.c : runperl.c
786 copy runperl.c perl95.c
787
d56e6723 788perl95$(o) : perl95.c
eb480a0b 789 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c perl95.c
3e3baf6d 790
d56e6723 791win32sckmt$(o) : win32sck.c
eb480a0b 792 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c \
793 $(OBJOUT_FLAG)win32sckmt$(o) win32sck.c
fb73857a 794
d56e6723 795win32mt$(o) : win32.c
eb480a0b 796 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c \
797 $(OBJOUT_FLAG)win32mt$(o) win32.c
fb73857a 798
ac4c12e7 799DynaLoadmt$(o) : $(DYNALOADER).c
800 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c \
801 $(OBJOUT_FLAG)DynaLoadmt$(o) $(DYNALOADER).c
c69f6586 802
fb73857a 803$(PERL95EXE): $(PERLDLL) $(CONFIGPM) $(PERL95_OBJ)
eb480a0b 804 $(LINK32) -subsystem:console -nodefaultlib -out:$@ $(LINK_FLAGS) \
baed7233 805 $(LIBBASEFILES) $(PERL95_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) \
806 libcmt.lib
e7083a8c 807
808!ENDIF
3e3baf6d 809
137443ea 810$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
eb480a0b 811 if not exist $(AUTODIR) mkdir $(AUTODIR)
a1dd9325 812 cd $(EXTDIR)\$(*B)
bfab39a2 813 ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
a1dd9325 814 cd ..\..\win32
68dc0745 815 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
816 cd $(EXTDIR)\$(*B)
817 $(XSUBPP) dl_win32.xs > $(*B).c
0a753a76 818 cd ..\..\win32
819
68dc0745 820$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
821 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
0a753a76 822
823edd99 823$(DUMPER_DLL): $(PERLEXE) $(DUMPER).xs
824 cd $(EXTDIR)\Data\$(*B)
825 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
826 $(MAKE)
827 cd ..\..\..\win32
828
38b3a85b 829$(DPROF_DLL): $(PERLEXE) $(DPROF).xs
830 cd $(EXTDIR)\Devel\$(*B)
831 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
832 $(MAKE)
833 cd ..\..\..\win32
834
4f49e16e 835$(GLOB_DLL): $(PERLEXE) $(GLOB).xs
836 cd $(EXTDIR)\File\$(*B)
837 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
838 $(MAKE)
839 cd ..\..\..\win32
840
3967c732 841$(PEEK_DLL): $(PERLEXE) $(PEEK).xs
842 cd $(EXTDIR)\Devel\$(*B)
843 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
844 $(MAKE)
845 cd ..\..\..\win32
846
15e52e56 847$(RE_DLL): $(PERLEXE) $(RE).xs
848 cd $(EXTDIR)\$(*B)
849 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
850 $(MAKE)
851 cd ..\..\win32
852
2a321948 853$(B_DLL): $(PERLEXE) $(B).xs
a98bd6f4 854 cd $(EXTDIR)\$(*B)
855 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
856 $(MAKE)
857 cd ..\..\win32
858
d55594ae 859$(THREAD_DLL): $(PERLEXE) $(THREAD).xs
059e4e88 860 cd $(EXTDIR)\$(*B)
861 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
862 $(MAKE)
863 cd ..\..\win32
864
2a321948 865$(ATTRS_DLL): $(PERLEXE) $(ATTRS).xs
866 cd $(EXTDIR)\$(*B)
867 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
868 $(MAKE)
869 cd ..\..\win32
d55594ae 870
6dead956 871$(POSIX_DLL): $(PERLEXE) $(POSIX).xs
872 cd $(EXTDIR)\$(*B)
873 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
874 $(MAKE)
875 cd ..\..\win32
876
eb480a0b 877$(IO_DLL): $(PERLEXE) $(IO).xs
68dc0745 878 cd $(EXTDIR)\$(*B)
137443ea 879 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
880 $(MAKE)
0a753a76 881 cd ..\..\win32
882
137443ea 883$(SDBM_FILE_DLL) : $(PERLEXE) $(SDBM_FILE).xs
68dc0745 884 cd $(EXTDIR)\$(*B)
137443ea 885 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
886 $(MAKE)
68dc0745 887 cd ..\..\win32
0a753a76 888
137443ea 889$(FCNTL_DLL): $(PERLEXE) $(FCNTL).xs
68dc0745 890 cd $(EXTDIR)\$(*B)
137443ea 891 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
892 $(MAKE)
0a753a76 893 cd ..\..\win32
894
137443ea 895$(OPCODE_DLL): $(PERLEXE) $(OPCODE).xs
68dc0745 896 cd $(EXTDIR)\$(*B)
137443ea 897 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
898 $(MAKE)
68dc0745 899 cd ..\..\win32
0a753a76 900
059e4e88 901$(SOCKET_DLL): $(PERLEXE) $(SOCKET).xs
68dc0745 902 cd $(EXTDIR)\$(*B)
137443ea 903 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
904 $(MAKE)
0a753a76 905 cd ..\..\win32
906
b295d113 907$(BYTELOADER_DLL): $(PERLEXE) $(BYTELOADER).xs
908 cd $(EXTDIR)\$(*B)
909 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
910 $(MAKE)
911 cd ..\..\win32
912
eab60bb1 913$(ERRNO_PM): $(PERLEXE) $(ERRNO)_pm.PL
914 cd $(EXTDIR)\$(*B)
915 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
916 $(MAKE)
917 cd ..\..\win32
918
68dc0745 919doc: $(PERLEXE)
d07c2202 920 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
b3b61bd8 921 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
3e3baf6d 922 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
68dc0745 923
4a71ed0c 924utils: $(PERLEXE) $(X2P)
3fe9a6f1 925 cd ..\utils
eb480a0b 926 $(MAKE) PERL=$(MINIPERL)
4a71ed0c 927 cd ..\pod
66aa1127 928 copy ..\README.win32 .\perlwin32.pod
4a71ed0c 929 $(MAKE) -f ..\win32\pod.mak converters
3fe9a6f1 930 cd ..\win32
4a71ed0c 931 $(PERLEXE) $(PL2BAT) $(UTILS)
3fe9a6f1 932
137443ea 933distclean: clean
dc050285 934 -del /f $(MINIPERL) $(PERLEXE) $(PERL95EXE) $(PERLDLL) $(GLOBEXE) \
83437bec 935 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD)
3e3baf6d 936 -del /f *.def *.map
eab60bb1 937 -del /f $(EXTENSION_DLL) $(EXTENSION_PM)
938 -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm
eb480a0b 939 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
940 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
941 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
942 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
943 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
15e52e56 944 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
b295d113 945 -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
38b3a85b 946 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
4f49e16e 947 -del /f $(LIBDIR)\File\Glob.pm
eb480a0b 948 -rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
949 -rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
950 -rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
823edd99 951 -rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
68dc0745 952 -del /f $(PODDIR)\*.html
953 -del /f $(PODDIR)\*.bat
eb480a0b 954 cd ..\utils
95667ae4 955 -del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc pstruct dprofpp
eb480a0b 956 -del /f *.bat
957 cd ..\win32
958 cd ..\x2p
959 -del /f find2perl s2p
960 -del /f *.bat
961 cd ..\win32
962 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
963 -del /f $(CONFIGPM)
964 -del /f perl95.c
d444a431 965 -del /f bin\*.bat
3e3baf6d 966 cd $(EXTDIR)
22c35a8c 967 -del /s *.lib *.def *.map *.pdb *.bs Makefile *$(o) pm_to_blib
3e3baf6d 968 cd ..\win32
eb480a0b 969 -rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
970 -rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
68dc0745 971
4a71ed0c 972install : all installbare installhtml
6dead956 973
4a71ed0c 974installbare : utils
d07c2202 975 $(PERLEXE) ..\installperl
e7083a8c 976!IF "$(USE_PERLCRT)" == ""
3e3baf6d 977 $(XCOPY) $(PERL95EXE) $(INST_BIN)\*.*
e7083a8c 978!ENDIF
68dc0745 979 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
e5a95ffb 980 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
6dead956 981
982installhtml : doc
3e3baf6d 983 $(RCOPY) html\*.* $(INST_HTML)\*.*
68dc0745 984
137443ea 985inst_lib : $(CONFIGPM)
68dc0745 986 copy splittree.pl ..
eb480a0b 987 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
c90c0ff4 988 $(RCOPY) ..\lib $(INST_LIB)\*.*
0a753a76 989
dfb634a9 990minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
137443ea 991 $(XCOPY) $(MINIPERL) ..\t\perl.exe
992 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
993 attrib -r ..\t\*.*
994 copy test ..\t
995 cd ..\t
996 $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
997 cd ..\win32
998
dfb634a9 999test-prep : all utils
68dc0745 1000 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1001 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1002 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
fb73857a 1003
1004test : test-prep
1005 cd ..\t
1006 $(PERLEXE) -I..\lib harness
1007 cd ..\win32
1008
1009test-notty : test-prep
1010 set PERL_SKIP_TTY_TEST=1
137443ea 1011 cd ..\t
1012 $(PERLEXE) -I..\lib harness
68dc0745 1013 cd ..\win32
137443ea 1014
1015clean :
d56e6723 1016 -@erase miniperlmain$(o)
137443ea 1017 -@erase $(MINIPERL)
d56e6723 1018 -@erase perlglob$(o)
1019 -@erase perlmain$(o)
3e3baf6d 1020 -@erase config.w32
1021 -@erase /f config.h
137443ea 1022 -@erase $(GLOBEXE)
1023 -@erase $(PERLEXE)
1024 -@erase $(PERLDLL)
1025 -@erase $(CORE_OBJ)
eb480a0b 1026 -rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
137443ea 1027 -@erase $(WIN32_OBJ)
1028 -@erase $(DLL_OBJ)
d07c2202 1029 -@erase $(X2P_OBJ)
c5be433b 1030 -@erase ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
d444a431 1031 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
d07c2202 1032 -@erase ..\x2p\*.exe ..\x2p\*.bat
137443ea 1033 -@erase *.ilk
1034 -@erase *.pdb