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