2 # Makefile to build perl on Windows NT using DMAKE.
4 # Visual C++ 2.0 thro 6.0
6 # Mingw32 with gcc-2.95.2 or better **experimental**
8 # This is set up to build a perl.exe that runs off a shared library
9 # (perl57.dll). Also makes individual DLLs for the XS extensions.
13 ## Make sure you read README.win32 *before* you mess with anything here!
17 ## Build configuration. Edit the values below to suit your needs.
21 # Set these to wherever you want "dmake install" to put your
25 INST_TOP *= $(INST_DRV)\perl
28 # Comment this out if you DON'T want your perl installation to be versioned.
29 # This means that the new installation will overwrite any files from the
30 # old installation at the same INST_TOP location. Leaving it enabled is
31 # the safest route, as perl adds the extra version directory to all the
32 # locations it installs files to. If you disable it, an alternative
33 # versioned installation can be obtained by setting INST_TOP above to a
34 # path that includes an arbitrary version string.
39 # Comment this out if you DON'T want your perl installation to have
40 # architecture specific components. This means that architecture-
41 # specific files will be installed along with the architecture-neutral
42 # files. Leaving it enabled is safer and more flexible, in case you
43 # want to build multiple flavors of perl and install them together in
44 # the same location. Commenting it out gives you a simpler
45 # installation that is easier to understand for beginners.
47 INST_ARCH *= \$(ARCHNAME)
50 # uncomment to enable multiple interpreters. This is need for fork()
56 # Beginnings of interpreter cloning/threads; still very incomplete.
57 # This should be enabled to get the fork() emulation. This needs
60 USE_ITHREADS *= define
63 # uncomment to enable the implicit "host" layer for all system calls
64 # made by perl. This needs USE_MULTI above. This is also needed to
70 # uncomment to enable the experimental PerlIO I/O subsystem.
74 # WARNING! This option is deprecated and will eventually go away (enable
75 # USE_ITHREADS instead).
77 # uncomment to enable threads-capabilities. This is incompatible with
78 # USE_ITHREADS, and is only here for people who may have come to rely
79 # on the experimental Thread support that was in 5.005.
81 #USE_5005THREADS *= define
84 # WARNING! This option is deprecated and will eventually go away (enable
87 # uncomment next line if you want to use the PERL_OBJECT build option.
88 # DO NOT ENABLE unless you have legacy code that relies on the C++
89 # CPerlObj class that was available in 5.005. This cannot be enabled
90 # if you ask for USE_5005THREADS above.
95 # uncomment exactly one of the following
99 # Visual C++ > 2.x and < 6.x
103 # Borland 5.02 or later
105 # mingw32+gcc-2.95.2 or better
109 # uncomment this if your Borland compiler is older than v5.4.
112 # uncomment this if you want to use Borland's VCL as your CRT
116 # uncomment this if you are compiling under Windows 95/98 and command.com
117 # (not needed if you're running under 4DOS/NT 6.01 or later)
121 # uncomment next line if you want debug version of perl (big,slow)
122 # If not enabled, we automatically try to use maximum optimization
123 # with all compilers that are known to have a working optimizer.
128 # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
129 # It has patches that fix known bugs in older versions of MSVCRT.DLL.
130 # This currently requires VC 5.0 with Service Pack 3 or later.
131 # Get it from CPAN at http://www.perl.com/CPAN/authors/id/D/DO/DOUGL/
132 # and follow the directions in the package to install.
134 # Not recommended if you have VC 6.x and you're not running Windows 9x.
136 #USE_PERLCRT *= define
139 # uncomment to enable linking with setargv.obj under the Visual C
140 # compiler. Setting this options enables perl to expand wildcards in
141 # arguments, but it may be harder to use alternate methods like
142 # File::DosGlob that are more powerful. This option is supported only with
145 #USE_SETARGV *= define
148 # if you have the source for des_fcrypt(), uncomment this and make sure the
149 # file exists (see README.win32). File should be located in the same
150 # directory as this file.
152 #CRYPT_SRC *= fcrypt.c
155 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
156 # library, uncomment this, and make sure the library exists (see README.win32)
157 # Specify the full pathname of the library.
159 #CRYPT_LIB *= fcrypt.lib
162 # set this if you wish to use perl's malloc
163 # WARNING: Turning this on/off WILL break binary compatibility with extensions
164 # you may have compiled with/without it. Be prepared to recompile all
165 # extensions if you change the default. Currently, this cannot be enabled
166 # if you ask for USE_IMP_SYS above.
168 #PERL_MALLOC *= define
171 # set the install locations of the compiler include/libraries
172 # Running VCVARS32.BAT is *required* when using Visual C.
173 # Some versions of Visual C don't define MSVCDIR in the environment,
174 # so you may have to set CCHOME explicitly (spaces in the path name should
177 #CCHOME *= F:\borland\bc5
179 #CCHOME *= c:\gcc-2.95.2
180 CCINCDIR *= $(CCHOME)\include
181 CCLIBDIR *= $(CCHOME)\lib
184 # Additional compiler flags can be specified here.
188 # This should normally be disabled. Adding -DPERL_POLLUTE enables support
189 # for old symbols by default, at the expense of extreme pollution. You most
190 # probably just want to build modules that won't compile with
191 # perl Makefile.PL POLLUTE=1
192 # instead of enabling this. Please report such modules to the respective
195 #BUILDOPT += -DPERL_POLLUTE
198 # This should normally be disabled. Enabling it will disable the File::Glob
199 # implementation of CORE::glob.
201 #BUILDOPT += -DPERL_EXTERNAL_GLOB
204 # This should normally be disabled. Enabling it causes perl to read scripts
205 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
206 #BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
209 # specify semicolon-separated list of extra directories that modules will
210 # look for libraries (spaces in path names need not be quoted)
215 # set this to point to cmd.exe (only needed if you use some
216 # alternate shell that doesn't grok cmd.exe style commands)
218 #SHELL *= g:\winnt\system32\cmd.exe
221 # set this to your email address (perl will guess a value from
222 # from your loginname and your hostname, which may not be right)
227 ## Build configuration ends.
230 ##################### CHANGE THESE ONLY IF YOU MUST #####################
232 .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
236 CRYPT_FLAG = -DHAVE_DES_FCRYPT
239 .IF "$(USE_OBJECT)" == "define"
241 USE_5005THREADS != undef
243 USE_IMP_SYS != define
248 USE_5005THREADS *= undef
250 .IF "$(USE_5005THREADS)" == "define"
251 USE_ITHREADS != undef
254 .IF "$(USE_IMP_SYS)" == "define"
260 USE_ITHREADS *= undef
265 .IF "$(USE_IMP_SYS)$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" == "defineundefundefundef"
269 .IF "$(USE_ITHREADS)$(USE_MULTI)$(USE_OBJECT)" == "defineundefundef"
271 USE_5005THREADS != undef
274 .IF "$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" != "undefundefundef"
275 BUILDOPT += -DPERL_IMPLICIT_CONTEXT
278 .IF "$(USE_IMP_SYS)" != "undef"
279 BUILDOPT += -DPERL_IMPLICIT_SYS
282 .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE
284 PROCESSOR_ARCHITECTURE *= x86
286 .IF "$(USE_OBJECT)" == "define"
287 ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-object
288 .ELIF "$(USE_5005THREADS)" == "define"
289 ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-thread
290 .ELIF "$(USE_MULTI)" == "define"
291 ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
293 .IF "$(USE_PERLIO)" == "define"
294 ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio
296 ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
298 ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
301 .IF "$(USE_ITHREADS)" == "define"
302 ARCHNAME !:= $(ARCHNAME)-thread
305 # Visual Studio 98 specific
306 .IF "$(CCTYPE)" == "MSVC60"
308 # VC 6.0 can load the socket dll on demand. Makes the test suite
309 # run in about 10% less time.
310 DELAYLOAD *= -DELAYLOAD:wsock32.dll -DELAYLOAD:shell32.dll delayimp.lib
312 .IF "$(CFG)" == "Debug"
314 # VC 6.0 seems capable of compiling perl correctly with optimizations
315 # enabled. Anything earlier fails tests.
320 ARCHDIR = ..\lib\$(ARCHNAME)
321 COREDIR = ..\lib\CORE
322 AUTODIR = ..\lib\auto
326 EXTUTILSDIR = $(LIBDIR)\ExtUtils
329 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
330 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
331 INST_LIB = $(INST_TOP)$(INST_VER)\lib
332 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
333 INST_COREDIR = $(INST_ARCHLIB)\CORE
334 INST_POD = $(INST_LIB)\pod
335 INST_HTML = $(INST_TOP)$(INST_VER)\html
338 # Programs to compile, build .lib files and link
343 .IF "$(CCTYPE)" == "BORLAND"
346 .IF "$(BCCOLD)" != "define"
358 INCLUDES = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
359 #PCHFLAGS = -H -Hc -H=c:\temp\bcmoduls.pch
360 DEFINES = -DWIN32 $(CRYPT_FLAG)
361 LOCDEFS = -DPERLDLL -DPERL_CORE
366 LIBFILES = $(CRYPT_LIB) import32.lib $(LIBC)
368 .IF "$(CFG)" == "Debug"
369 OPTIMIZE = -v -D_RTLDLL -DDEBUGGING
372 OPTIMIZE = -O2 -D_RTLDLL
376 CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
377 $(PCHFLAGS) $(OPTIMIZE)
378 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
382 .IF "$(BCCOLD)" != "define"
384 DEFINES += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
386 .IF "$(BCCVCL)" == "define"
387 LIBC = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
388 LINK_FLAGS += -L"$(CCLIBDIR)\Release"
392 .ELIF "$(CCTYPE)" == "GCC"
408 INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
409 DEFINES = -DWIN32 $(CRYPT_FLAG)
410 LOCDEFS = -DPERLDLL -DPERL_CORE
417 LIBFILES = $(CRYPT_LIB) $(LIBC) \
418 -lmoldname -lkernel32 -luser32 -lgdi32 \
419 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
420 -loleaut32 -lnetapi32 -luuid -lwsock32 -lmpr \
421 -lwinmm -lversion -lodbc32
423 .IF "$(CFG)" == "Debug"
424 OPTIMIZE = -g -O2 -DDEBUGGING
431 CFLAGS = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
432 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
437 # NOTE: we assume that GCC uses MSVCRT.DLL
438 BUILDOPT += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
444 LIB32 = $(LINK32) -lib
451 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
452 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
453 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
454 LOCDEFS = -DPERLDLL -DPERL_CORE
458 .IF "$(USE_PERLCRT)" != "define"
467 .IF "$(CFG)" == "Debug"
468 .IF "$(CCTYPE)" == "MSVC20"
469 OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
470 LINK_DBG = -debug -pdb:none
472 # -Zi requires .pdb file(s)
473 #OPTIMIZE = -Od -MD -Zi -DDEBUGGING
475 OPTIMIZE = -O1 -MD -Z7 -DDEBUGGING
476 LINK_DBG = -debug -debugtype:both -pdb:none
479 .IF "$(CFG)" == "Optimize"
480 # -O1 yields smaller code, which turns out to be faster than -O2
481 #OPTIMIZE = -O2 -MD -DNDEBUG
482 OPTIMIZE = -O1 -MD -DNDEBUG
484 OPTIMIZE = -Od -MD -DNDEBUG
489 LIBBASEFILES = $(CRYPT_LIB) \
490 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
491 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
492 netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
493 version.lib odbc32.lib odbccp32.lib
495 # we add LIBC here, since we may be using PerlCRT.dll
496 LIBFILES = $(LIBBASEFILES) $(LIBC)
498 CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
499 $(PCHFLAGS) $(OPTIMIZE)
500 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
501 -libpath:"$(INST_COREDIR)" \
502 -machine:$(PROCESSOR_ARCHITECTURE)
507 .IF "$(USE_PERLCRT)" != "define"
508 BUILDOPT += -DPERL_MSVCRT_READFIX
513 .IF "$(USE_OBJECT)" == "define"
514 OPTIMIZE += $(CXX_FLAG)
515 BUILDOPT += -DPERL_OBJECT
518 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
520 # used to allow local linking flags that are not propogated into Config.pm,
524 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
526 #################### do not edit below this line #######################
527 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
539 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
542 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
545 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
551 .IF "$(CCTYPE)" == "BORLAND"
552 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
553 $(IMPLIB) $(*B).lib $@
554 .ELIF "$(CCTYPE)" == "GCC"
555 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
556 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
558 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
559 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
567 MINIPERL = ..\miniperl.exe
569 PERLEXE = ..\perl.exe
570 WPERLEXE = ..\wperl.exe
571 GLOBEXE = ..\perlglob.exe
572 CONFIGPM = ..\lib\Config.pm
573 MINIMOD = ..\lib\ExtUtils\Miniperl.pm
576 # Nominate a target which causes extensions to be re-built
577 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
578 # on and really only the interface - i.e. the .def file used to export symbols
580 PERLDEP = perldll.def
583 PL2BAT = bin\pl2bat.pl
584 GLOBBAT = bin\perlglob.bat
607 ..\lib\ExtUtils\xsubpp \
614 .IF "$(CCTYPE)" == "BORLAND"
616 CFGSH_TMPL = config.bc
617 CFGH_TMPL = config_H.bc
619 .ELIF "$(CCTYPE)" == "GCC"
621 CFGSH_TMPL = config.gc
622 CFGH_TMPL = config_H.gc
623 PERLIMPLIB = ..\libperl57$(a)
627 CFGSH_TMPL = config.vc
628 CFGH_TMPL = config_H.vc
632 # makedef.pl must be updated if this changes, and this should normally
633 # only change when there is an incompatible revision of the public API.
634 # XXX so why did we change it from perl56 to perl57?
635 PERLIMPLIB *= ..\perl57$(a)
636 PERLDLL = ..\perl57.dll
638 XCOPY = xcopy /f /r /i /d
639 RCOPY = xcopy /f /r /i /e /d
643 # filenames given to xsubpp must have forward slashes (since it puts
644 # full pathnames in #line strings)
645 XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
681 EXTRACORE_SRC += perllib.c
683 .IF "$(PERL_MALLOC)" == "define"
684 EXTRACORE_SRC += ..\malloc.c
687 .IF "$(USE_OBJECT)" != "define"
688 EXTRACORE_SRC += ..\perlio.c
697 .IF "$(CRYPT_SRC)" != ""
698 WIN32_SRC += .\$(CRYPT_SRC)
701 DLL_SRC = $(DYNALOADER).c
747 .\include\sys\socket.h \
750 CORE_H = $(CORE_NOCFG_H) .\config.h
752 MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
753 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
754 WIN32_OBJ = $(WIN32_SRC:db:+$(o))
755 MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
756 MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
757 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
758 DLL_OBJ = $(DLL_SRC:db:+$(o))
759 X2P_OBJ = $(X2P_SRC:db:+$(o))
761 PERLDLL_OBJ = $(CORE_OBJ)
762 PERLEXE_OBJ = perlmain$(o)
764 PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
766 .IF "$(USE_SETARGV)" != ""
767 SETARGV_OBJ = setargv$(o)
770 DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
771 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
772 Sys/Hostname Storable Filter/Util/Call Encode \
773 Digest/MD5 PerlIO/Scalar MIME/Base64 Time/HiRes Time/Piece
774 STATIC_EXT = DynaLoader
777 DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
779 POD2HTML = $(PODDIR)\pod2html
780 POD2MAN = $(PODDIR)\pod2man
781 POD2LATEX = $(PODDIR)\pod2latex
782 POD2TEXT = $(PODDIR)\pod2text
784 # vars must be separated by "\t+~\t+", since we're using the tempfile
785 # version of config_sh.pl (we were overflowing someone's buffer by
786 # trying to fit them all on the command line)
789 INST_DRV=$(INST_DRV) ~ \
790 INST_TOP=$(INST_TOP:s/\/\\/) ~ \
791 INST_VER=$(INST_VER:s/\/\\/) ~ \
792 INST_ARCH=$(INST_ARCH) ~ \
793 archname=$(ARCHNAME) ~ \
796 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
797 cf_email=$(EMAIL) ~ \
798 d_crypt=$(D_CRYPT) ~ \
799 d_mymalloc=$(PERL_MALLOC) ~ \
800 libs=$(LIBFILES:f) ~ \
801 incpath=$(CCINCDIR:s/\/\\/) ~ \
802 libperl=$(PERLIMPLIB:f) ~ \
803 libpth=$(CCLIBDIR:s/\/\\/);$(EXTRALIBDIRS:s/\/\\/) ~ \
806 _o=$(o) obj_ext=$(o) ~ \
807 _a=$(a) lib_ext=$(a) ~ \
808 static_ext=$(STATIC_EXT) ~ \
809 use5005threads=$(USE_5005THREADS) ~ \
810 useithreads=$(USE_ITHREADS) ~ \
811 usethreads=$(USE_5005THREADS) ~ \
812 usemultiplicity=$(USE_MULTI) ~ \
813 useperlio=$(USE_PERLIO) ~ \
814 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/) ~ \
818 # set up targets varying between Win95 and WinNT builds
821 .IF "$(IS_WIN95)" == "define"
823 RIGHTMAKE = __switch_makefiles
834 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \
835 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(PERLEXE) \
838 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
840 #----------------------------------------------------------------
842 #-------------------- BEGIN Win95 SPECIFIC ----------------------
844 # this target is a jump-off point for Win95
845 # 1. it switches to the Win95-specific makefile if it exists
846 # (__do_switch_makefiles)
847 # 2. it prints a message when the Win95-specific one finishes (__done)
848 # 3. it then kills this makefile by trying to make __no_such_target
850 __switch_makefiles: __do_switch_makefiles __done __no_such_target
852 __do_switch_makefiles:
853 .IF "$(NOTFIRST)" != "true"
854 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
859 .IF "$(NOTFIRST)" != "true"
861 @echo Build process complete. Ignore any errors after this message.
862 @echo Run "dmake test" to test and "dmake install" to install
865 # dummy targets for Win95-specific makefile
875 # This target is used to generate the new makefile (.\makefile.95) for Win95
877 .\makefile.95: .\makefile.mk
878 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
880 #--------------------- END Win95 SPECIFIC ---------------------
882 # a blank target for when builds don't need to do certain things
883 # this target added for Win95 port but used to keep the WinNT port able to
888 $(GLOBEXE) : perlglob$(o)
889 .IF "$(CCTYPE)" == "BORLAND"
890 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
891 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
892 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
893 .ELIF "$(CCTYPE)" == "GCC"
894 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
896 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
897 perlglob$(o) setargv$(o)
900 perlglob$(o) : perlglob.c
902 config.w32 : $(CFGSH_TMPL)
903 copy $(CFGSH_TMPL) config.w32
905 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
907 copy $(CFGH_TMPL) config.h
909 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
910 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
911 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
913 # this target is for when changes to the main config.sh happen
914 # edit config.{b,v,g}c and make this target once for each supported
915 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
917 perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
918 $(CFGSH_TMPL) > ..\config.sh
919 -cd .. && del /f perl.exe
920 cd .. && perl configpm
923 -perl -I..\lib config_h.PL "INST_VER=$(INST_VER)"
924 rename config.h $(CFGH_TMPL)
926 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
927 cd .. && miniperl configpm
928 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
929 $(XCOPY) ..\*.h $(COREDIR)\*.*
930 $(XCOPY) *.h $(COREDIR)\*.*
931 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
932 $(RCOPY) include $(COREDIR)\*.*
933 $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
934 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
936 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
937 .IF "$(CCTYPE)" == "BORLAND"
938 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
939 @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
940 .ELIF "$(CCTYPE)" == "GCC"
941 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
942 $(mktmp $(LKPRE) $(MINI_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
944 $(LINK32) -subsystem:console -out:$@ \
945 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,\\))
949 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
951 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
952 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
954 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
955 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
957 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
958 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
959 # unless the .IF is true), so instead we use a .ELSE with the default.
960 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
962 perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
963 .IF "$(USE_IMP_SYS)$(USE_OBJECT)" == "defineundef"
964 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
966 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
969 # 1. we don't want to rebuild miniperl.exe when config.h changes
970 # 2. we don't want to rebuild miniperl.exe with non-default config.h
971 $(MINI_OBJ) : $(CORE_NOCFG_H)
973 $(WIN32_OBJ) : $(CORE_H)
974 $(CORE_OBJ) : $(CORE_H)
975 $(DLL_OBJ) : $(CORE_H)
976 $(X2P_OBJ) : $(CORE_H)
978 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
979 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
980 $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
982 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
983 .IF "$(CCTYPE)" == "BORLAND"
984 $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
985 @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,\\)\n \
990 .ELIF "$(CCTYPE)" == "GCC"
991 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
992 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
993 dlltool --output-lib $(PERLIMPLIB) \
994 --dllname $(PERLDLL:b).dll \
996 --base-file perl.base \
997 --output-exp perl.exp
998 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
999 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) \
1002 $(LINK32) -dll -def:perldll.def -out:$@ \
1003 @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1004 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,\\))
1006 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1008 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1009 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1011 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1012 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1014 ..\x2p\hash$(o) : ..\x2p\hash.c
1015 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1017 ..\x2p\str$(o) : ..\x2p\str.c
1018 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1020 ..\x2p\util$(o) : ..\x2p\util.c
1021 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1023 ..\x2p\walk$(o) : ..\x2p\walk.c
1024 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1026 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1027 $(MINIPERL) ..\x2p\find2perl.PL
1028 $(MINIPERL) ..\x2p\s2p.PL
1029 .IF "$(CCTYPE)" == "BORLAND"
1030 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1031 @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
1032 .ELIF "$(CCTYPE)" == "GCC"
1033 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1034 $(mktmp $(LKPRE) $(X2P_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1036 $(LINK32) -subsystem:console -out:$@ \
1037 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,\\))
1040 perlmain.c : runperl.c
1041 copy runperl.c perlmain.c
1043 perlmain$(o) : perlmain.c
1044 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1046 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1047 .IF "$(CCTYPE)" == "BORLAND"
1048 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1049 @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,\\)\n \
1051 $(PERLIMPLIB) $(LIBFILES)\n)
1052 .ELIF "$(CCTYPE)" == "GCC"
1053 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1054 $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1056 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1057 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1059 copy $(PERLEXE) $(WPERLEXE)
1060 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1061 copy splittree.pl ..
1062 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1064 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1065 if not exist $(AUTODIR) mkdir $(AUTODIR)
1066 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1067 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1068 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1069 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1070 cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1071 $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1073 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1074 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1076 #----------------------------------------------------------------------------------
1077 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1078 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
1081 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1083 #----------------------------------------------------------------------------------
1087 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1088 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1089 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1091 utils: $(PERLEXE) $(X2P)
1092 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1093 copy ..\README.aix ..\pod\perlaix.pod
1094 copy ..\README.amiga ..\pod\perlamiga.pod
1095 copy ..\README.apollo ..\pod\perlapollo.pod
1096 copy ..\README.beos ..\pod\perlbeos.pod
1097 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1098 copy ..\README.cygwin ..\pod\perlcygwin.pod
1099 copy ..\README.dgux ..\pod\perldgux.pod
1100 copy ..\README.dos ..\pod\perldos.pod
1101 copy ..\README.epoc ..\pod\perlepoc.pod
1102 copy ..\README.hpux ..\pod\perlhpux.pod
1103 copy ..\README.hurd ..\pod\perlhurd.pod
1104 copy ..\README.machten ..\pod\perlmachten.pod
1105 copy ..\README.macos ..\pod\perlmacos.pod
1106 copy ..\README.mint ..\pod\perlmint.pod
1107 copy ..\README.mpeix ..\pod\perlmpeix.pod
1108 copy ..\README.netware ..\pod\perlnetware.pod
1109 copy ..\README.os2 ..\pod\perlos2.pod
1110 copy ..\README.os390 ..\pod\perlos390.pod
1111 copy ..\README.plan9 ..\pod\perlplan9.pod
1112 copy ..\README.qnx ..\pod\perlqnx.pod
1113 copy ..\README.solaris ..\pod\perlsolaris.pod
1114 copy ..\README.tru64 ..\pod\perltru64.pod
1115 copy ..\README.uts ..\pod\perluts.pod
1116 copy ..\README.vmesa ..\pod\perlvmesa.pod
1117 copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1118 copy ..\README.vos ..\pod\perlvos.pod
1119 copy ..\README.win32 ..\pod\perlwin32.pod
1120 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1121 cd ..\lib && $(PERLEXE) lib_pm.PL
1122 $(PERLEXE) $(PL2BAT) $(UTILS)
1125 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1126 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1128 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1129 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1130 -del /f $(LIBDIR)\XSLoader.pm
1131 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1132 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
1133 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1134 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1135 -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
1136 -del /f $(LIBDIR)\PerlIO\Scalar.pm
1137 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1138 -del /f $(LIBDIR)\File\Glob.pm
1139 -del /f $(LIBDIR)\Storable.pm
1140 -del /f $(LIBDIR)\Filter\Util\Call.pm
1141 -del /f $(LIBDIR)\Digest\MD5.pm
1142 -del /f $(LIBDIR)\MIME\Base64.pm
1143 -del /f $(LIBDIR)\MIME\QuotedPrint.pm
1144 -del /f $(LIBDIR)\Time\HiRes.pm
1145 -del /f $(LIBDIR)\List\Util.pm
1146 -del /f $(LIBDIR)\Scalar\Util.pm
1147 -del /f $(LIBDIR)\Time\Piece.pm
1148 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
1149 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
1150 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
1151 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
1152 -if exist $(LIBDIR)\Filter\Util\Call rmdir /s /q $(LIBDIR)\Filter\Util\Call || rmdir /s $(LIBDIR)\Filter
1153 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util || rmdir /s $(LIBDIR)\Filter
1154 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest || rmdir /s $(LIBDIR)\Digest
1155 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME || rmdir /s $(LIBDIR)\MIME
1156 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List || rmdir /s $(LIBDIR)\List
1157 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar || rmdir /s $(LIBDIR)\Scalar
1158 -cd $(PODDIR) && del /f *.html *.bat checkpods \
1159 perlaix.pod perlamiga.pod perlapollo.pod \
1160 perlbeos.pod perlbs2000.pod perlcygwin.pod perldgux.pod \
1161 perldos.pod perlepoc.pod perlhpux.pod perlhurd.pod \
1162 perlmachten.pod perlmint.pod \
1163 perlmacos.pod perlmpeix.pod perlnetware.pod \
1164 perlos2.pod perlos390.pod \
1165 perlplan9.pod perlqnx.pod \
1166 perlsolaris.pod perltru64.pod perluts.pod \
1167 perlvmesa.pod perlvms.pod perlvos.pod \
1168 perlwin32.pod pod2html pod2latex pod2man pod2text pod2usage \
1169 podchecker podselect
1170 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc \
1172 -cd ..\x2p && del /f find2perl s2p *.bat
1173 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1176 -cd $(EXTDIR) && del /s *$(a) *.def *.map *.pdb *.bs Makefile *$(o) \
1178 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
1179 -if exist $(COREDIR) rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
1181 install : all installbare installhtml
1183 installbare : $(RIGHTMAKE) utils
1184 $(PERLEXE) ..\installperl
1185 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1186 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1187 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1190 $(RCOPY) html\*.* $(INST_HTML)\*.*
1192 inst_lib : $(CONFIGPM)
1193 copy splittree.pl ..
1194 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1195 $(RCOPY) ..\lib $(INST_LIB)\*.*
1197 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
1198 $(XCOPY) $(MINIPERL) ..\t\perl.exe
1199 .IF "$(CCTYPE)" == "BORLAND"
1200 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1202 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1207 $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1209 test-prep : all utils
1210 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1211 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1212 .IF "$(CCTYPE)" == "BORLAND"
1213 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1215 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1218 test : $(RIGHTMAKE) test-prep
1219 cd ..\t && $(PERLEXE) -I..\lib harness
1221 test-notty : test-prep
1222 set PERL_SKIP_TTY_TEST=1 && \
1223 cd ..\t && $(PERLEXE) -I.\lib harness
1225 test-wide : test-prep
1226 set HARNESS_PERL_SWITCHES=-C && \
1227 cd ..\t && $(PERLEXE) -I..\lib harness
1229 test-wide-notty : test-prep
1230 set PERL_SKIP_TTY_TEST=1 && \
1231 set HARNESS_PERL_SWITCHES=-C && \
1232 cd ..\t && $(PERLEXE) -I..\lib harness
1234 clean : Extensions_clean
1235 -@erase miniperlmain$(o)
1237 -@erase perlglob$(o)
1238 -@erase perlmain$(o)
1246 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
1247 -@erase $(WIN32_OBJ)
1250 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1251 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1252 -@erase ..\x2p\*.exe ..\x2p\*.bat
1256 # Handy way to run perlbug -ok without having to install and run the
1257 # installed perlbug. We don't re-run the tests here - we trust the user.
1258 # Please *don't* use this unless all tests pass.
1259 # If you want to report test failures, use "dmake nok" instead.
1261 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1264 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1267 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1270 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok