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