integrate vmsperl contents into mainline (where VMS files conflicted,
[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#
c1b02fb8 32INST_VER = \5.00561
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#
80252599 144# specify semicolon-separated list of extra directories that modules will
145# look for libraries (spaces in path names need not be quoted)
fa4efe8e 146#
147EXTRALIBDIRS =
148
149#
d484a829 150# set this to your email address (perl will guess a value from
151# from your loginname and your hostname, which may not be right)
e7083a8c 152#
eb480a0b 153#EMAIL =
d484a829 154
e7083a8c 155##
156## Build configuration ends.
157##
158
137443ea 159##################### CHANGE THESE ONLY IF YOU MUST #####################
160
26618a56 161!IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
eb480a0b 162D_CRYPT = undef
26618a56 163!ELSE
eb480a0b 164D_CRYPT = define
165CRYPT_FLAG = -DHAVE_DES_FCRYPT
166!ENDIF
167
c5be433b 168!IF "$(USE_OBJECT)" == "define"
eb480a0b 169PERL_MALLOC = undef
e2f80c04 170USE_THREADS = undef
b86a2fa7 171USE_MULTI = undef
26618a56 172!ENDIF
173
1c1c7f20 174!IF "$(PERL_MALLOC)" == ""
175PERL_MALLOC = undef
176!ENDIF
177
eb480a0b 178!IF "$(USE_THREADS)" == ""
179USE_THREADS = undef
180!ENDIF
181
b86a2fa7 182!IF "$(USE_MULTI)" == ""
183USE_MULTI = undef
184!ENDIF
185
3bb366e1 186!IF "$(USE_OBJECT)" == ""
187USE_OBJECT = undef
188!ENDIF
189
190!IF "$(USE_MULTI)$(USE_THREADS)$(USE_OBJECT)" != "undefundefundef"
0b94c7bb 191BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
192!ENDIF
193
d07c2202 194!IF "$(PROCESSOR_ARCHITECTURE)" == ""
195PROCESSOR_ARCHITECTURE = x86
196!ENDIF
197
c5be433b 198!IF "$(USE_OBJECT)" == "define"
b83ac84c 199ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-object
200!ELSE
924b3ec4 201!IF "$(USE_THREADS)" == "define"
d07c2202 202ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-thread
924b3ec4 203!ELSE
c5be433b 204!IF "$(USE_MULTI)" == "define"
205ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
206!ELSE
924b3ec4 207ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
d07c2202 208!ENDIF
b83ac84c 209!ENDIF
c5be433b 210!ENDIF
d07c2202 211
7fac1903 212# Visual Studio 98 specific
213!IF "$(CCTYPE)" == "MSVC60"
214
215# VC 6.0 can load the socket dll on demand. Makes the test suite
216# run in about 10% less time.
217DELAYLOAD = -DELAYLOAD:wsock32.dll delayimp.lib
218
219# VC 6.0 seems capable of compiling perl correctly with optimizations
220# enabled. Anything earlier fails tests.
221!IF "$(CFG)" == ""
222CFG = Optimize
223!ENDIF
224!ENDIF
225
d07c2202 226COREDIR = ..\lib\CORE
eb480a0b 227AUTODIR = ..\lib\auto
d07c2202 228
137443ea 229#
230# Programs to compile, build .lib files and link
231#
68dc0745 232
eb480a0b 233CC = cl.exe
234LINK32 = link.exe
235LIB32 = $(LINK32) -lib
236
68dc0745 237#
137443ea 238# Options
239#
eb480a0b 240
af883608 241RUNTIME = -MD
9036c72f 242INCLUDES = -I$(COREDIR) -I.\include -I. -I..
eb480a0b 243#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
c5be433b 244DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
eb480a0b 245LOCDEFS = -DPERLDLL -DPERL_CORE
246SUBSYS = console
247CXX_FLAG = -TP -GX
137443ea 248
e7083a8c 249!IF "$(USE_PERLCRT)" == ""
250! IF "$(CFG)" == "Debug"
251PERLCRTLIBC = msvcrtd.lib
252! ELSE
253PERLCRTLIBC = msvcrt.lib
254! ENDIF
255!ELSE
256! IF "$(CFG)" == "Debug"
257PERLCRTLIBC = PerlCRTD.lib
258! ELSE
259PERLCRTLIBC = PerlCRT.lib
260! ENDIF
261!ENDIF
262
137443ea 263!IF "$(RUNTIME)" == "-MD"
e7083a8c 264LIBC = $(PERLCRTLIBC)
137443ea 265!ELSE
eb480a0b 266LIBC = libcmt.lib
137443ea 267!ENDIF
268
269!IF "$(CFG)" == "Debug"
270! IF "$(CCTYPE)" == "MSVC20"
eb480a0b 271OPTIMIZE = -Od $(RUNTIME) -Z7 -D_DEBUG -DDEBUGGING
137443ea 272! ELSE
3dfd1da1 273OPTIMIZE = -Od $(RUNTIME)d -Zi -D_DEBUG -DDEBUGGING
137443ea 274! ENDIF
eb480a0b 275LINK_DBG = -debug -pdb:none
137443ea 276!ELSE
74593e1f 277! IF "$(CFG)" == "Optimize"
c5be433b 278# -O1 yields smaller code, which turns out to be faster than -O2
279#OPTIMIZE = -O2 $(RUNTIME) -DNDEBUG
280OPTIMIZE = -O1 $(RUNTIME) -DNDEBUG
137443ea 281! ELSE
af883608 282OPTIMIZE = -Od $(RUNTIME) -DNDEBUG
137443ea 283! ENDIF
eb480a0b 284LINK_DBG = -release
285!ENDIF
286
c5be433b 287!IF "$(USE_OBJECT)" == "define"
eb480a0b 288OPTIMIZE = $(OPTIMIZE) $(CXX_FLAG)
c5be433b 289BUILDOPT = $(BUILDOPT) -DPERL_OBJECT
137443ea 290!ENDIF
68dc0745 291
7fac1903 292LIBBASEFILES = $(DELAYLOAD) $(CRYPT_LIB) \
293 oldnames.lib kernel32.lib user32.lib gdi32.lib \
eb480a0b 294 winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib \
295 oleaut32.lib netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
296 version.lib odbc32.lib odbccp32.lib
3e3baf6d 297
e7083a8c 298# we add LIBC here, since we may be using PerlCRT.dll
299LIBFILES = $(LIBBASEFILES) $(LIBC)
300
eb480a0b 301CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
302 $(PCHFLAGS) $(OPTIMIZE)
e7083a8c 303LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) -machine:$(PROCESSOR_ARCHITECTURE)
eb480a0b 304OBJOUT_FLAG = -Fo
305EXEOUT_FLAG = -Fe
306
c5be433b 307CFLAGS_O = $(CFLAGS) $(BUILDOPT)
137443ea 308
309#################### do not edit below this line #######################
310############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
311
d56e6723 312o = .obj
313
137443ea 314#
315# Rules
316#
137443ea 317
d56e6723 318.SUFFIXES : .c $(o) .dll .lib .exe
319
320.c$(o):
eb480a0b 321 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
322
323.y.c:
324 $(NOOP)
137443ea 325
d56e6723 326$(o).dll:
3e3baf6d 327 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
dc050285 328 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
68dc0745 329
68dc0745 330#
0cb96387 331INST_BIN = $(INST_TOP)$(INST_VER)\bin$(INST_ARCH)
e5a95ffb 332INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
333INST_LIB = $(INST_TOP)$(INST_VER)\lib
eb480a0b 334INST_POD = $(INST_LIB)\pod
335INST_HTML = $(INST_POD)\html
336LIBDIR = ..\lib
337EXTDIR = ..\ext
338PODDIR = ..\pod
339EXTUTILSDIR = $(LIBDIR)\extutils
68dc0745 340
341#
342# various targets
c5be433b 343!IF "$(USE_OBJECT)" == "define"
3075ddba 344PERLIMPLIB = ..\perl56.lib
345PERLDLL = ..\perl56.dll
eb480a0b 346!ELSE
347PERLIMPLIB = ..\perl.lib
348PERLDLL = ..\perl.dll
26618a56 349!ENDIF
350
eb480a0b 351MINIPERL = ..\miniperl.exe
352MINIDIR = .\mini
353PERLEXE = ..\perl.exe
354GLOBEXE = ..\perlglob.exe
355CONFIGPM = ..\lib\Config.pm
356MINIMOD = ..\lib\ExtUtils\Miniperl.pm
357X2P = ..\x2p\a2p.exe
358
359PL2BAT = bin\pl2bat.pl
360GLOBBAT = bin\perlglob.bat
361
4a71ed0c 362UTILS = \
363 ..\utils\h2ph \
364 ..\utils\splain \
95667ae4 365 ..\utils\dprofpp \
4a71ed0c 366 ..\utils\perlbug \
367 ..\utils\pl2pm \
368 ..\utils\c2ph \
369 ..\utils\h2xs \
370 ..\utils\perldoc \
371 ..\utils\pstruct \
372 ..\utils\perlcc \
373 ..\pod\checkpods \
374 ..\pod\pod2html \
375 ..\pod\pod2latex \
376 ..\pod\pod2man \
377 ..\pod\pod2text \
360aca43 378 ..\pod\pod2usage \
379 ..\pod\podchecker \
380 ..\pod\podselect \
4a71ed0c 381 ..\x2p\find2perl \
382 ..\x2p\s2p \
4a71ed0c 383 bin\runperl.pl \
384 bin\pl2bat.pl \
385 bin\perlglob.pl \
386 bin\search.pl
387
eb480a0b 388MAKE = nmake -nologo
389
390CFGSH_TMPL = config.vc
391CFGH_TMPL = config_H.vc
e7083a8c 392
393!IF "$(USE_PERLCRT)" == ""
eb480a0b 394PERL95EXE = ..\perl95.exe
e7083a8c 395!ENDIF
eb480a0b 396
397XCOPY = xcopy /f /r /i /d
398RCOPY = xcopy /f /r /i /e /d
399NOOP = @echo
400NULL =
1c1c7f20 401
68dc0745 402#
403# filenames given to xsubpp must have forward slashes (since it puts
404# full pathnames in #line strings)
eb480a0b 405XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
406 -C++ -prototypes
407
852c2e52 408MICROCORE_SRC = \
eb480a0b 409 ..\av.c \
eb480a0b 410 ..\deb.c \
411 ..\doio.c \
412 ..\doop.c \
413 ..\dump.c \
414 ..\globals.c \
415 ..\gv.c \
416 ..\hv.c \
417 ..\mg.c \
418 ..\op.c \
419 ..\perl.c \
51371543 420 ..\perlapi.c \
eb480a0b 421 ..\perly.c \
422 ..\pp.c \
423 ..\pp_ctl.c \
424 ..\pp_hot.c \
425 ..\pp_sys.c \
426 ..\regcomp.c \
427 ..\regexec.c \
428 ..\run.c \
429 ..\scope.c \
430 ..\sv.c \
431 ..\taint.c \
432 ..\toke.c \
433 ..\universal.c \
a176fa2a 434 ..\utf8.c \
349fd7b7 435 ..\util.c \
436 ..\xsutils.c
eb480a0b 437
0cb96387 438EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
439
eb480a0b 440!IF "$(PERL_MALLOC)" == "define"
852c2e52 441EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
eb480a0b 442!ENDIF
443
c5be433b 444!IF "$(USE_OBJECT)" != "define"
852c2e52 445EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
eb480a0b 446!ENDIF
447
448WIN32_SRC = \
449 .\win32.c \
450 .\win32sck.c
451
452!IF "$(USE_THREADS)" == "define"
453WIN32_SRC = $(WIN32_SRC) .\win32thread.c
454!ENDIF
455
8d9b2e3c 456!IF "$(CRYPT_SRC)" != ""
457WIN32_SRC = $(WIN32_SRC) .\$(CRYPT_SRC)
458!ENDIF
459
eb480a0b 460PERL95_SRC = \
461 perl95.c \
462 win32mt.c \
463 win32sckmt.c
464
a1dd9325 465!IF "$(CRYPT_SRC)" != ""
8d9b2e3c 466PERL95_SRC = $(PERL95_SRC) .\$(CRYPT_SRC)
a1dd9325 467!ENDIF
468
eb480a0b 469DLL_SRC = $(DYNALOADER).c
470
eb480a0b 471X2P_SRC = \
472 ..\x2p\a2p.c \
473 ..\x2p\hash.c \
474 ..\x2p\str.c \
475 ..\x2p\util.c \
476 ..\x2p\walk.c
477
852c2e52 478CORE_NOCFG_H = \
eb480a0b 479 ..\av.h \
eb480a0b 480 ..\cop.h \
481 ..\cv.h \
482 ..\dosish.h \
483 ..\embed.h \
484 ..\form.h \
485 ..\gv.h \
486 ..\handy.h \
487 ..\hv.h \
0f4eea8f 488 ..\iperlsys.h \
eb480a0b 489 ..\mg.h \
490 ..\nostdio.h \
491 ..\op.h \
492 ..\opcode.h \
493 ..\perl.h \
51371543 494 ..\perlapi.h \
eb480a0b 495 ..\perlsdio.h \
496 ..\perlsfio.h \
497 ..\perly.h \
498 ..\pp.h \
499 ..\proto.h \
500 ..\regexp.h \
501 ..\scope.h \
502 ..\sv.h \
503 ..\thread.h \
504 ..\unixish.h \
a176fa2a 505 ..\utf8.h \
eb480a0b 506 ..\util.h \
dfe13c55 507 ..\warning.h \
eb480a0b 508 ..\XSUB.h \
eb480a0b 509 ..\EXTERN.h \
510 ..\perlvars.h \
511 ..\intrpvar.h \
512 ..\thrdvar.h \
513 .\include\dirent.h \
514 .\include\netdb.h \
515 .\include\sys\socket.h \
516 .\win32.h
517
852c2e52 518CORE_H = $(CORE_NOCFG_H) .\config.h
519
520MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
521CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
eb480a0b 522WIN32_OBJ = $(WIN32_SRC:.c=.obj)
852c2e52 523MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
524 $(MINIDIR)\miniperlmain$(o) \
525 $(MINIDIR)\perlio$(o)
eb480a0b 526MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
527MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
af883608 528PERL95_OBJ = $(PERL95_SRC:.c=.obj)
eb480a0b 529DLL_OBJ = $(DLL_SRC:.c=.obj)
530X2P_OBJ = $(X2P_SRC:.c=.obj)
531
eb480a0b 532PERLDLL_OBJ = $(CORE_OBJ)
533PERLEXE_OBJ = perlmain$(o)
534
eb480a0b 535PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
0cb96387 536#PERLEXE_OBJ = $(PERLEXE_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
537#PERL95_OBJ = $(PERL95_OBJ) DynaLoadmt$(o)
eb480a0b 538
baed7233 539!IF "$(USE_SETARGV)" != ""
540SETARGV_OBJ = setargv$(o)
541!ENDIF
542
823edd99 543DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
38b3a85b 544 Data/Dumper Devel/Peek ByteLoader Devel/DProf
eb480a0b 545STATIC_EXT = DynaLoader
eab60bb1 546NONXS_EXT = Errno
eb480a0b 547
548DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
549SOCKET = $(EXTDIR)\Socket\Socket
550FCNTL = $(EXTDIR)\Fcntl\Fcntl
551OPCODE = $(EXTDIR)\Opcode\Opcode
552SDBM_FILE = $(EXTDIR)\SDBM_File\SDBM_File
553IO = $(EXTDIR)\IO\IO
554POSIX = $(EXTDIR)\POSIX\POSIX
555ATTRS = $(EXTDIR)\attrs\attrs
556THREAD = $(EXTDIR)\Thread\Thread
557B = $(EXTDIR)\B\B
823edd99 558RE = $(EXTDIR)\re\re
559DUMPER = $(EXTDIR)\Data\Dumper\Dumper
eab60bb1 560ERRNO = $(EXTDIR)\Errno\Errno
3967c732 561PEEK = $(EXTDIR)\Devel\Peek\Peek
a6c40364 562BYTELOADER = $(EXTDIR)\ByteLoader\ByteLoader
38b3a85b 563DPROF = $(EXTDIR)\Devel\DProf\DProf
eb480a0b 564
565SOCKET_DLL = $(AUTODIR)\Socket\Socket.dll
566FCNTL_DLL = $(AUTODIR)\Fcntl\Fcntl.dll
567OPCODE_DLL = $(AUTODIR)\Opcode\Opcode.dll
568SDBM_FILE_DLL = $(AUTODIR)\SDBM_File\SDBM_File.dll
569IO_DLL = $(AUTODIR)\IO\IO.dll
570POSIX_DLL = $(AUTODIR)\POSIX\POSIX.dll
571ATTRS_DLL = $(AUTODIR)\attrs\attrs.dll
572THREAD_DLL = $(AUTODIR)\Thread\Thread.dll
573B_DLL = $(AUTODIR)\B\B.dll
823edd99 574DUMPER_DLL = $(AUTODIR)\Data\Dumper\Dumper.dll
3967c732 575PEEK_DLL = $(AUTODIR)\Devel\Peek\Peek.dll
15e52e56 576RE_DLL = $(AUTODIR)\re\re.dll
b295d113 577BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll
38b3a85b 578DPROF_DLL = $(AUTODIR)\Devel\DProf\DProf.dll
eb480a0b 579
eab60bb1 580ERRNO_PM = $(LIBDIR)\Errno.pm
581
eb480a0b 582EXTENSION_C = \
583 $(SOCKET).c \
584 $(FCNTL).c \
585 $(OPCODE).c \
586 $(SDBM_FILE).c \
587 $(IO).c \
588 $(POSIX).c \
589 $(ATTRS).c \
590 $(THREAD).c \
15e52e56 591 $(RE).c \
823edd99 592 $(DUMPER).c \
3967c732 593 $(PEEK).c \
b295d113 594 $(B).c \
38b3a85b 595 $(BYTELOADER).c \
596 $(DPROF).c
eb480a0b 597
598EXTENSION_DLL = \
599 $(SOCKET_DLL) \
600 $(FCNTL_DLL) \
601 $(OPCODE_DLL) \
602 $(SDBM_FILE_DLL)\
603 $(IO_DLL) \
604 $(POSIX_DLL) \
51aa15f3 605 $(ATTRS_DLL) \
823edd99 606 $(DUMPER_DLL) \
3967c732 607 $(PEEK_DLL) \
b295d113 608 $(B_DLL) \
c5be433b 609 $(RE_DLL) \
610 $(THREAD_DLL) \
38b3a85b 611 $(BYTELOADER_DLL) \
612 $(DPROF_DLL)
26ca90b6 613
eab60bb1 614EXTENSION_PM = \
615 $(ERRNO_PM)
616
eb480a0b 617POD2HTML = $(PODDIR)\pod2html
618POD2MAN = $(PODDIR)\pod2man
619POD2LATEX = $(PODDIR)\pod2latex
620POD2TEXT = $(PODDIR)\pod2text
621
622CFG_VARS = \
623 "INST_DRV=$(INST_DRV)" \
624 "INST_TOP=$(INST_TOP)" \
e5a95ffb 625 "INST_VER=$(INST_VER)" \
0cb96387 626 "INST_ARCH=$(INST_ARCH)" \
eb480a0b 627 "archname=$(ARCHNAME)" \
628 "cc=$(CC)" \
c5be433b 629 "ccflags=$(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
eb480a0b 630 "cf_email=$(EMAIL)" \
631 "d_crypt=$(D_CRYPT)" \
632 "d_mymalloc=$(PERL_MALLOC)" \
633 "libs=$(LIBFILES)" \
80252599 634 "incpath=$(CCINCDIR:"=\")" \
635 "libperl=$(PERLIMPLIB:..\=)" \
636 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
eb480a0b 637 "libc=$(LIBC)" \
638 "make=nmake" \
639 "static_ext=$(STATIC_EXT)" \
640 "dynamic_ext=$(DYNAMIC_EXT)" \
eab60bb1 641 "nonxs_ext=$(NONXS_EXT)" \
eb480a0b 642 "usethreads=$(USE_THREADS)" \
b86a2fa7 643 "usemultiplicity=$(USE_MULTI)" \
80252599 644 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
645 "optimize=$(OPTIMIZE:"=\")"
924b3ec4 646
137443ea 647#
648# Top targets
649#
0a753a76 650
852c2e52 651all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(PERLEXE) $(PERL95EXE) \
c5be433b 652 $(X2P) $(EXTENSION_DLL) $(EXTENSION_PM)
0a753a76 653
d56e6723 654$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
0a753a76 655
137443ea 656#------------------------------------------------------------
0a753a76 657
eb480a0b 658$(GLOBEXE) : perlglob$(o)
dc050285 659 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
d56e6723 660 perlglob$(o) setargv$(o)
0a753a76 661
d56e6723 662perlglob$(o) : perlglob.c
137443ea 663
3e3baf6d 664config.w32 : $(CFGSH_TMPL)
665 copy $(CFGSH_TMPL) config.w32
666
d55594ae 667.\config.h : $(CFGH_TMPL)
3e3baf6d 668 -del /f config.h
669 copy $(CFGH_TMPL) config.h
670
137443ea 671..\config.sh : config.w32 $(MINIPERL) config_sh.PL
924b3ec4 672 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
137443ea 673
ac4c12e7 674# this target is for when changes to the main config.sh happen
675# edit config.{b,v,g}c and make this target once for each supported
676# compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
677regen_config_h:
678 perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
679 cd ..
680 -del /f perl.exe
681 perl configpm
682 cd win32
683 -del /f $(CFGH_TMPL)
80252599 684 -mkdir $(COREDIR)
e5a95ffb 685 -perl -I..\lib config_h.PL "INST_VER=$(INST_VER)"
ac4c12e7 686 rename config.h $(CFGH_TMPL)
687
83437bec 688$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
137443ea 689 cd .. && miniperl configpm
c90c0ff4 690 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
d07c2202 691 $(XCOPY) ..\*.h $(COREDIR)\*.*
692 $(XCOPY) *.h $(COREDIR)\*.*
15e52e56 693 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
d07c2202 694 $(RCOPY) include $(COREDIR)\*.*
e5a95ffb 695 $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
80252599 696 || $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
137443ea 697
eb480a0b 698$(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
137443ea 699 $(LINK32) -subsystem:console -out:$@ @<<
eb480a0b 700 $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
137443ea 701<<
702
eb480a0b 703$(MINIDIR) :
704 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
705
852c2e52 706$(MINICORE_OBJ) : $(CORE_NOCFG_H)
eb480a0b 707 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ ..\$(*F).c
708
852c2e52 709$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
eb480a0b 710 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
711
852c2e52 712# 1. we don't want to rebuild miniperl.exe when config.h changes
713# 2. we don't want to rebuild miniperl.exe with non-default config.h
714$(MINI_OBJ) : $(CORE_NOCFG_H)
715
eb480a0b 716$(WIN32_OBJ) : $(CORE_H)
717$(CORE_OBJ) : $(CORE_H)
eb480a0b 718$(DLL_OBJ) : $(CORE_H)
719$(PERL95_OBJ) : $(CORE_H)
720$(X2P_OBJ) : $(CORE_H)
0a753a76 721
549a6b10 722perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
723 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
910dfcc8 724 CCTYPE=$(CCTYPE) > perldll.def
0a753a76 725
eb480a0b 726$(PERLDLL): perldll.def $(PERLDLL_OBJ)
137443ea 727 $(LINK32) -dll -def:perldll.def -out:$@ @<<
eb480a0b 728 $(LINK_FLAGS) $(LIBFILES) $(PERLDLL_OBJ)
137443ea 729<<
d07c2202 730 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
137443ea 731
83437bec 732$(MINIMOD) : $(MINIPERL) ..\minimod.pl
733 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
734
eb480a0b 735..\x2p\a2p$(o) : ..\x2p\a2p.c
736 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
737
738..\x2p\hash$(o) : ..\x2p\hash.c
739 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
740
741..\x2p\str$(o) : ..\x2p\str.c
742 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
743
744..\x2p\util$(o) : ..\x2p\util.c
745 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
746
747..\x2p\walk$(o) : ..\x2p\walk.c
748 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
749
750$(X2P) : $(MINIPERL) $(X2P_OBJ)
751 $(MINIPERL) ..\x2p\find2perl.PL
752 $(MINIPERL) ..\x2p\s2p.PL
d07c2202 753 $(LINK32) -subsystem:console -out:$@ @<<
eb480a0b 754 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
d07c2202 755<<
756
83437bec 757perlmain.c : runperl.c
0a753a76 758 copy runperl.c perlmain.c
137443ea 759
d56e6723 760perlmain$(o) : perlmain.c
8957be0a 761 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
137443ea 762
eb480a0b 763$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ)
764 $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) $(LIBFILES) \
baed7233 765 $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB)
0a753a76 766 copy splittree.pl ..
eb480a0b 767 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
0a753a76 768
e7083a8c 769!IF "$(USE_PERLCRT)" == ""
770
3e3baf6d 771perl95.c : runperl.c
772 copy runperl.c perl95.c
773
d56e6723 774perl95$(o) : perl95.c
eb480a0b 775 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c perl95.c
3e3baf6d 776
d56e6723 777win32sckmt$(o) : win32sck.c
eb480a0b 778 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c \
779 $(OBJOUT_FLAG)win32sckmt$(o) win32sck.c
fb73857a 780
d56e6723 781win32mt$(o) : win32.c
eb480a0b 782 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c \
783 $(OBJOUT_FLAG)win32mt$(o) win32.c
fb73857a 784
ac4c12e7 785DynaLoadmt$(o) : $(DYNALOADER).c
786 $(CC) $(CFLAGS_O) -MT -UPERLDLL -DWIN95FIX -c \
787 $(OBJOUT_FLAG)DynaLoadmt$(o) $(DYNALOADER).c
c69f6586 788
fb73857a 789$(PERL95EXE): $(PERLDLL) $(CONFIGPM) $(PERL95_OBJ)
eb480a0b 790 $(LINK32) -subsystem:console -nodefaultlib -out:$@ $(LINK_FLAGS) \
baed7233 791 $(LIBBASEFILES) $(PERL95_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) \
792 libcmt.lib
e7083a8c 793
794!ENDIF
3e3baf6d 795
137443ea 796$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
eb480a0b 797 if not exist $(AUTODIR) mkdir $(AUTODIR)
a1dd9325 798 cd $(EXTDIR)\$(*B)
bfab39a2 799 ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
a1dd9325 800 cd ..\..\win32
68dc0745 801 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
802 cd $(EXTDIR)\$(*B)
803 $(XSUBPP) dl_win32.xs > $(*B).c
0a753a76 804 cd ..\..\win32
805
68dc0745 806$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
807 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
0a753a76 808
823edd99 809$(DUMPER_DLL): $(PERLEXE) $(DUMPER).xs
810 cd $(EXTDIR)\Data\$(*B)
811 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
812 $(MAKE)
813 cd ..\..\..\win32
814
38b3a85b 815$(DPROF_DLL): $(PERLEXE) $(DPROF).xs
816 cd $(EXTDIR)\Devel\$(*B)
817 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
818 $(MAKE)
819 cd ..\..\..\win32
820
3967c732 821$(PEEK_DLL): $(PERLEXE) $(PEEK).xs
822 cd $(EXTDIR)\Devel\$(*B)
823 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
824 $(MAKE)
825 cd ..\..\..\win32
826
15e52e56 827$(RE_DLL): $(PERLEXE) $(RE).xs
828 cd $(EXTDIR)\$(*B)
829 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
830 $(MAKE)
831 cd ..\..\win32
832
2a321948 833$(B_DLL): $(PERLEXE) $(B).xs
a98bd6f4 834 cd $(EXTDIR)\$(*B)
835 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
836 $(MAKE)
837 cd ..\..\win32
838
d55594ae 839$(THREAD_DLL): $(PERLEXE) $(THREAD).xs
059e4e88 840 cd $(EXTDIR)\$(*B)
841 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
842 $(MAKE)
843 cd ..\..\win32
844
2a321948 845$(ATTRS_DLL): $(PERLEXE) $(ATTRS).xs
846 cd $(EXTDIR)\$(*B)
847 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
848 $(MAKE)
849 cd ..\..\win32
d55594ae 850
6dead956 851$(POSIX_DLL): $(PERLEXE) $(POSIX).xs
852 cd $(EXTDIR)\$(*B)
853 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
854 $(MAKE)
855 cd ..\..\win32
856
eb480a0b 857$(IO_DLL): $(PERLEXE) $(IO).xs
68dc0745 858 cd $(EXTDIR)\$(*B)
137443ea 859 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
860 $(MAKE)
0a753a76 861 cd ..\..\win32
862
137443ea 863$(SDBM_FILE_DLL) : $(PERLEXE) $(SDBM_FILE).xs
68dc0745 864 cd $(EXTDIR)\$(*B)
137443ea 865 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
866 $(MAKE)
68dc0745 867 cd ..\..\win32
0a753a76 868
137443ea 869$(FCNTL_DLL): $(PERLEXE) $(FCNTL).xs
68dc0745 870 cd $(EXTDIR)\$(*B)
137443ea 871 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
872 $(MAKE)
0a753a76 873 cd ..\..\win32
874
137443ea 875$(OPCODE_DLL): $(PERLEXE) $(OPCODE).xs
68dc0745 876 cd $(EXTDIR)\$(*B)
137443ea 877 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
878 $(MAKE)
68dc0745 879 cd ..\..\win32
0a753a76 880
059e4e88 881$(SOCKET_DLL): $(PERLEXE) $(SOCKET).xs
68dc0745 882 cd $(EXTDIR)\$(*B)
137443ea 883 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
884 $(MAKE)
0a753a76 885 cd ..\..\win32
886
b295d113 887$(BYTELOADER_DLL): $(PERLEXE) $(BYTELOADER).xs
888 cd $(EXTDIR)\$(*B)
889 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
890 $(MAKE)
891 cd ..\..\win32
892
eab60bb1 893$(ERRNO_PM): $(PERLEXE) $(ERRNO)_pm.PL
894 cd $(EXTDIR)\$(*B)
895 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
896 $(MAKE)
897 cd ..\..\win32
898
68dc0745 899doc: $(PERLEXE)
d07c2202 900 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
b3b61bd8 901 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
3e3baf6d 902 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
68dc0745 903
4a71ed0c 904utils: $(PERLEXE) $(X2P)
3fe9a6f1 905 cd ..\utils
eb480a0b 906 $(MAKE) PERL=$(MINIPERL)
4a71ed0c 907 cd ..\pod
66aa1127 908 copy ..\README.win32 .\perlwin32.pod
4a71ed0c 909 $(MAKE) -f ..\win32\pod.mak converters
3fe9a6f1 910 cd ..\win32
4a71ed0c 911 $(PERLEXE) $(PL2BAT) $(UTILS)
3fe9a6f1 912
137443ea 913distclean: clean
dc050285 914 -del /f $(MINIPERL) $(PERLEXE) $(PERL95EXE) $(PERLDLL) $(GLOBEXE) \
83437bec 915 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD)
3e3baf6d 916 -del /f *.def *.map
eab60bb1 917 -del /f $(EXTENSION_DLL) $(EXTENSION_PM)
918 -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm
eb480a0b 919 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
920 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
921 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
922 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
923 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
15e52e56 924 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
b295d113 925 -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
38b3a85b 926 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
eb480a0b 927 -rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
928 -rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
929 -rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
823edd99 930 -rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
68dc0745 931 -del /f $(PODDIR)\*.html
932 -del /f $(PODDIR)\*.bat
eb480a0b 933 cd ..\utils
95667ae4 934 -del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc pstruct dprofpp
eb480a0b 935 -del /f *.bat
936 cd ..\win32
937 cd ..\x2p
938 -del /f find2perl s2p
939 -del /f *.bat
940 cd ..\win32
941 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
942 -del /f $(CONFIGPM)
943 -del /f perl95.c
d444a431 944 -del /f bin\*.bat
3e3baf6d 945 cd $(EXTDIR)
22c35a8c 946 -del /s *.lib *.def *.map *.pdb *.bs Makefile *$(o) pm_to_blib
3e3baf6d 947 cd ..\win32
eb480a0b 948 -rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
949 -rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
68dc0745 950
4a71ed0c 951install : all installbare installhtml
6dead956 952
4a71ed0c 953installbare : utils
d07c2202 954 $(PERLEXE) ..\installperl
e7083a8c 955!IF "$(USE_PERLCRT)" == ""
3e3baf6d 956 $(XCOPY) $(PERL95EXE) $(INST_BIN)\*.*
e7083a8c 957!ENDIF
68dc0745 958 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
e5a95ffb 959 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
6dead956 960
961installhtml : doc
3e3baf6d 962 $(RCOPY) html\*.* $(INST_HTML)\*.*
68dc0745 963
137443ea 964inst_lib : $(CONFIGPM)
68dc0745 965 copy splittree.pl ..
eb480a0b 966 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
c90c0ff4 967 $(RCOPY) ..\lib $(INST_LIB)\*.*
0a753a76 968
dfb634a9 969minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
137443ea 970 $(XCOPY) $(MINIPERL) ..\t\perl.exe
971 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
972 attrib -r ..\t\*.*
973 copy test ..\t
974 cd ..\t
975 $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
976 cd ..\win32
977
dfb634a9 978test-prep : all utils
68dc0745 979 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
980 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
981 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
fb73857a 982
983test : test-prep
984 cd ..\t
985 $(PERLEXE) -I..\lib harness
986 cd ..\win32
987
988test-notty : test-prep
989 set PERL_SKIP_TTY_TEST=1
137443ea 990 cd ..\t
991 $(PERLEXE) -I..\lib harness
68dc0745 992 cd ..\win32
137443ea 993
994clean :
d56e6723 995 -@erase miniperlmain$(o)
137443ea 996 -@erase $(MINIPERL)
d56e6723 997 -@erase perlglob$(o)
998 -@erase perlmain$(o)
3e3baf6d 999 -@erase config.w32
1000 -@erase /f config.h
137443ea 1001 -@erase $(GLOBEXE)
1002 -@erase $(PERLEXE)
1003 -@erase $(PERLDLL)
1004 -@erase $(CORE_OBJ)
eb480a0b 1005 -rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
137443ea 1006 -@erase $(WIN32_OBJ)
1007 -@erase $(DLL_OBJ)
d07c2202 1008 -@erase $(X2P_OBJ)
c5be433b 1009 -@erase ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
d444a431 1010 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
d07c2202 1011 -@erase ..\x2p\*.exe ..\x2p\*.bat
137443ea 1012 -@erase *.ilk
1013 -@erase *.pdb