Commit | Line | Data |
---|---|---|
2986a63f JH |
1 | ## |
2 | ## Makefile to build Perl on NetWare using Microsoft NMAKE and Watcom tools | |
3 | ## | |
4 | ## This will build perl.nlm, perl.lib and extensions called NLPs | |
5 | ## | |
6 | ||
7 | ## | |
8 | ## Please read README.netware before starting | |
9 | ## | |
10 | ||
11 | ## | |
12 | ## Build configuration. Edit the values below to suit your needs. | |
13 | ## | |
14 | ||
15 | ## This file is created by using the makefile that creates Windows Perl as the reference | |
16 | ## Author: sgp | |
17 | ## Date Created: 13th July 2000 | |
18 | ## Date Modified: 03th April 2001 | |
19 | ||
20 | # Name of the NLM | |
21 | NLM_NAME = perl.nlm | |
22 | NLM_NAME8 = Perl | |
23 | ||
24 | MAKE_ACTION = Build | |
25 | ||
26 | # Flags | |
27 | DBG_FLAG = -DDEBUGON | |
28 | ||
29 | NW_FLAGS = -DNETWARE -DNLM_PLATFORM -DNETDB_USE_INTERNET | |
30 | ||
31 | REL_DIR = Release | |
32 | DEB_DIR = Debug | |
33 | ||
34 | !ifndef MAKE_TYPE | |
35 | #MAKE_TYPE = Release | |
36 | !message "Run bat\buildtype.bat to set the build type before continuing.\n" | |
37 | !error | |
38 | !endif #!ifndef MAKE_TYPE | |
39 | ||
40 | !ifdef USE_MPK | |
41 | MPKFLAGS = -DMPK_ON -DIAPX386 | |
42 | MPKMESSAGE = MPK Build... | |
43 | XDCTOOL = mpkxdc | |
44 | !ifndef MPKBASE | |
45 | #MPKBASE = p:\mpk | |
46 | !message "Run bat\setnwbld.bat to set the NetWare MPK SDK before continuing.\n" | |
47 | !error | |
48 | !endif #ifndef MPKBASE | |
49 | NLM_INCLUDE_MP = $(MPKBASE)\include | |
50 | MPKTOOL = $(MPKBASE)\$(XDCTOOL) | |
51 | !else | |
52 | MPKMESSAGE = Non MPK Build... | |
53 | NLM_INCLUDE_MP = | |
54 | MPKTOOL = | |
55 | !endif #ifdef USE_MPK | |
56 | ||
57 | !ifndef NLMSDKBASE | |
58 | #NLMSDKBASE = P:\ndk\nwsdk | |
59 | !message "Run bat\setnwbld.bat to set the NetWare SDK before continuing.\n" | |
60 | !error | |
61 | !endif #ifndef NLMSDKBASE | |
62 | NLMIMPORTS = $(NLMSDKBASE)\imports | |
63 | ||
64 | !ifdef WATCOM | |
65 | C_COMPILER = wcc386 | |
66 | CPP_COMPILER = wpp386 | |
67 | NLM_LINK = wlink | |
68 | NLM_LIB = lib386 | |
69 | TOOL_HEADERS = $(WATCOM)\H;$(WATCOM)\H\NT | |
70 | TOOL_PATH = $(WATCOM)\BINNT;$(WATCOM)\BINW | |
71 | CCFLAGS = /zp1 /5s /w1 /zq /ms /otexanih /fpi | |
72 | COMPILER_FLAG = -DWATCOM | |
73 | ERROR_FLAG = -Fr | |
74 | !if "$(MAKE_TYPE)"=="Debug" | |
75 | BLDDIR = $(DEB_DIR) | |
76 | BLDMESG = Debug version, | |
77 | !ifdef USE_D2 | |
78 | BS_CFLAGS = /od /d2 /en /st /hc -DDEBUGGING -DUSE_D2 $(DBG_FLAG) | |
79 | BLDMESG = $(BLDMESG) Using /d2 option | |
80 | !else | |
81 | BS_CFLAGS = /od /d1 /en /st /hc -DDEBUGGING $(DBG_FLAG) | |
82 | BLDMESG = $(BLDMESG) Using /d1 option | |
83 | !endif #!ifdef USE_D2 | |
84 | ! else | |
85 | BLDDIR = $(REL_DIR) | |
86 | BLDMESG = Release version | |
87 | BS_CFLAGS = | |
88 | !endif #if "$(MAKE_TYPE)"=="Debug" | |
89 | !else #ifdef WATCOM | |
90 | !ifdef CODEWARRIOR | |
91 | # Here comes the CW tools - TO BE FILLED TO BUILD WITH CW - | |
92 | C_COMPILER = | |
93 | CPP_COMPILER = | |
94 | NLM_LINK = | |
95 | NLM_LIB = | |
96 | TOOL_HEADERS = | |
97 | TOOL_PATH = | |
98 | CCFLAGS = | |
99 | COMPILER_FLAG = | |
100 | ERROR_FLAG = | |
101 | # Debug flags comes here - Not mandatory - required only for debug build | |
102 | !if "$(MAKE_TYPE)"=="Debug" | |
103 | BLDDIR = $(DEB_DIR) | |
104 | BLDMESG = Debug version, | |
105 | !ifdef USE_D2 | |
106 | BS_CFLAGS = | |
107 | BLDMESG = $(BLDMESG) Using /d2 option | |
108 | !else | |
109 | BS_CFLAGS = | |
110 | BLDMESG = $(BLDMESG) Using /d1 option | |
111 | !endif #!ifdef USE_D2 | |
112 | ! else | |
113 | BLDDIR = $(REL_DIR) | |
114 | BLDMESG = Release version | |
115 | BS_CFLAGS = | |
116 | !endif #if "$(MAKE_TYPE)"=="Debug" | |
117 | !else #!ifdef CODEWARRIOR | |
118 | !message "Tools base directory is not defined. Run bat\setnwbld.bat before proceeding" | |
119 | !error | |
120 | Run bat\setnwbld.bat | |
121 | !endif #!ifdef CODEWARRIOR | |
122 | !endif #ifdef WATCOM | |
123 | ||
124 | ADD_LOCDEFS = -DPERL_CORE | |
125 | ||
126 | NLM_INCLUDE = -I$(NLMSDKBASE)\include | |
127 | NLM_INCLUDE_NLM = -I$(NLMSDKBASE)\include\nlm | |
128 | NLM_INCLUDE_NLM_SYS = -I$(NLMSDKBASE)\include\nlm\sys | |
129 | INCLUDE_NW = -I.\include | |
130 | INC_PREV = -I.. | |
131 | INC_THIS = -I.\ | |
132 | ||
133 | NLM_INCLUDE_PATH = $(NLMSDKBASE)\include\nlm;$(NLMSDKBASE)\include;$(NLMSDKBASE)\include\nlm\sys;$(NLM_INCLUDE_MP);$(TOOL_HEADERS) | |
134 | ||
135 | INCLUDE = $(NLM_INCLUDE_PATH) | |
136 | ||
137 | PATH = $(PATH);$(TOOL_PATH) | |
138 | ||
139 | NLM_INCLUDES = -I$(COREDIR) $(INCLUDE_NW) $(INC_THIS) $(INC_PREV) | |
140 | ||
141 | COMPLER_FLAGS = $(CCFLAGS) $(BS_CFLAGS) $(ADD_BUILDOPT) $(NW_FLAGS) $(COMPILER_FLAG) $(MPKFLAGS) | |
142 | ||
143 | # Source file list | |
144 | NW_H_FILES = \ | |
145 | .\iperlhost.h \ | |
146 | .\interface.h \ | |
147 | .\netware.h \ | |
148 | .\nw5iop.h \ | |
149 | .\nw5sck.h \ | |
150 | .\nwpipe.h \ | |
151 | .\nwplglob.h \ | |
152 | .\nwtinfo.h \ | |
153 | .\nwutil.h \ | |
154 | .\nwperlsys.h \ | |
155 | ||
156 | NW_HOST_H_FILES = \ | |
157 | .\iperlhost.h \ | |
158 | .\interface.h \ | |
159 | .\netware.h \ | |
160 | .\nw5sck.h \ | |
161 | .\nwperlsys.h \ | |
162 | ||
163 | CLIB_H_FILES = \ | |
164 | .\clibsdio.h \ | |
165 | .\clibstr.h \ | |
166 | .\clibstuf.h \ | |
167 | .\stdio.h \ | |
168 | .\string.h \ | |
169 | ||
170 | NW_SRC = \ | |
171 | .\CLIBstuf.c \ | |
172 | .\nw5.c \ | |
173 | .\nw5sck.c \ | |
174 | .\nw5thread.c \ | |
175 | .\nwmain.c \ | |
176 | .\nwpipe.c \ | |
177 | .\nwplglob.c \ | |
178 | .\nwtinfo.c \ | |
179 | .\nwutil.c \ | |
180 | ||
181 | EXT_MAIN_SRC = \ | |
182 | .\Main.c \ | |
183 | ||
184 | PERL_IO_SRC = \ | |
185 | ..\perlio.c | |
186 | ||
187 | PERL_LIB_SRC = \ | |
188 | .\interface.c \ | |
189 | .\nwperlsys.c \ | |
190 | ||
191 | ||
192 | NW_SRC_OBJ = $(NW_SRC:.c=.obj) | |
193 | NLM_MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj) | |
194 | PERL_LIB_OBJ = $(PERL_LIB_SRC:.c=.obj) | |
195 | PERL_IO_OBJ = $(PERL_IO_SRC:.c=.obj) | |
196 | NLM_CORE_OBJ = $(NLM_MICROCORE_OBJ) | |
197 | EXT_MAIN_OBJ = $(EXT_MAIN_SRC:.c=.obj) | |
198 | ||
199 | # For dependency checking | |
200 | # $(BLDDIR) in place of Release or Debug is not working, should look into this - sgp | |
201 | !if "$(BLDDIR)"=="Release" | |
202 | NLM_OBJ = $(NLM_CORE_OBJ:..\=.\Release\) | |
203 | NEWTARE_OBJ_DEP = $(NW_SRC_OBJ:.\=.\Release\) | |
204 | PERL_LIB_OBJ_DEP = $(PERL_LIB_OBJ:.\=.\Release\) | |
205 | PERL_IO_OBJ_DEP = $(PERL_IO_OBJ:..\=.\Release\) | |
206 | !else | |
207 | NLM_OBJ = $(NLM_CORE_OBJ:..\=.\Debug\) | |
208 | NEWTARE_OBJ_DEP = $(NW_SRC_OBJ:.\=.\Debug\) | |
209 | PERL_LIB_OBJ_DEP = $(PERL_LIB_OBJ:.\=.\Debug\) | |
210 | PERL_IO_OBJ_DEP = $(PERL_IO_OBJ:..\=.\Debug\) | |
211 | !endif | |
212 | ||
213 | # Symbol base_import & version added for NETWARE | |
214 | NW_CFG_VARS = \ | |
215 | "INST_DRV=$(INST_DRV)" \ | |
216 | "INST_TOP=$(INST_TOP)" \ | |
217 | "INST_VER=$(INST_VER)" \ | |
218 | "INST_ARCH=$(INST_ARCH)" \ | |
219 | "INST_NW_TOP1=$(INST_NW_TOP1)" \ | |
220 | "INST_NW_TOP2=$(INST_NW_TOP2)" \ | |
221 | "INST_NW_VER=$(INST_NW_VER)" \ | |
222 | "archname=$(ARCHNAME)" \ | |
223 | "cc=$(C_COMPILER)" \ | |
224 | "ccflags=$(COMPLER_FLAGS)" \ | |
225 | "cf_email=$(EMAIL)" \ | |
226 | "d_crypt=$(D_CRYPT)" \ | |
227 | "d_mymalloc=$(PERL_MALLOC)" \ | |
228 | # "libs=$(LIBFILES)" \ | |
229 | "incpath=$(NLM_INCLUDE_PATH)" \ | |
230 | "libperl=$(PERLIMPLIB:..\=)" \ | |
231 | "libpth=$(LIBPATH)" \ | |
232 | # "libc=$(LIBC)" \ | |
233 | "make=nmake" \ | |
234 | "static_ext=$(STATIC_EXT)" \ | |
235 | "dynamic_ext=$(DYNAMIC_EXT)" \ | |
236 | "nonxs_ext=$(NONXS_EXT)" \ | |
237 | "use5005threads=$(USE_5005THREADS)" \ | |
238 | "useithreads=$(USE_ITHREADS)" \ | |
239 | "usethreads=$(USE_5005THREADS)" \ | |
240 | "usemultiplicity=$(USE_MULTI)" \ | |
241 | "ld=$(NLM_LINK)" \ | |
242 | "base_import=$(BASE_IMPORT_FILES)" \ | |
243 | "LINK_FLAGS=$(LINK_FLAGS:"=\")" \ | |
244 | "optimize=" \ | |
245 | "d_times=define" \ | |
246 | "d_stdio_cnt_lval=undef" \ | |
247 | "d_stdio_ptr_lval=undef" \ | |
248 | "d_stdiobase=undef" \ | |
249 | "d_stdstdio=undef" \ | |
250 | "d_times=undef" \ | |
251 | "direntrytype=DIR" \ | |
252 | "nlm_version=$(NLM_VERSION)" \ | |
253 | "d_archname=NetWare" \ | |
254 | "mpktool=$(MPKTOOL) $(XDCFLAGS)" \ | |
255 | "toolpath=$(TOOL_PATH)" | |
256 | ||
257 | ||
258 | NW_CFGSH_TMPL = config.wc | |
259 | NW_CFGH_TMPL = config_H.wc | |
260 | ||
261 | SOCKET_NLP = $(AUTODIR)\Socket\Socket.nlp | |
262 | FCNTL_NLP = $(AUTODIR)\Fcntl\Fcntl.nlp | |
263 | IO_NLP = $(AUTODIR)\IO\IO.nlp | |
264 | OPCODE_NLP = $(AUTODIR)\Opcode\Opcode.nlp | |
265 | SDBM_FILE_NLP = $(AUTODIR)\SDBM_File\SDBM_File.nlp | |
266 | POSIX_NLP = $(AUTODIR)\POSIX\POSIX.nlp | |
267 | ATTRS_NLP = $(AUTODIR)\attrs\attrs.nlp | |
268 | THREAD_NLP = $(AUTODIR)\Thread\Thread.nlp | |
269 | B_NLP = $(AUTODIR)\B\B.nlp | |
270 | DUMPER_NLP = $(AUTODIR)\Data\Dumper\Dumper.nlp | |
271 | PEEK_NLP = $(AUTODIR)\Devel\Peek\Peek.nlp | |
272 | RE_NLP = $(AUTODIR)\re\re.nlp | |
273 | BYTELOADER_NLP = $(AUTODIR)\ByteLoader\ByteLoader.nlp | |
274 | DPROF_NLP = $(AUTODIR)\Devel\DProf\DProf.nlp | |
275 | GLOB_NLP = $(AUTODIR)\File\Glob\Glob.nlp | |
276 | ||
277 | EXTENSION_NLP = \ | |
278 | $(FCNTL_NLP) \ | |
279 | $(BYTELOADER_NLP) \ | |
280 | $(IO_NLP) \ | |
281 | $(SOCKET_NLP) \ | |
282 | $(OPCODE_NLP) \ | |
283 | $(B_NLP) \ | |
284 | $(ATTRS_NLP) \ | |
285 | $(SDBM_FILE_NLP) \ | |
286 | $(POSIX_NLP) \ | |
287 | $(THREAD_NLP) \ | |
288 | $(DUMPER_NLP) \ | |
289 | $(GLOB_NLP) \ | |
290 | $(PEEK_NLP) \ | |
291 | $(RE_NLP) \ | |
292 | $(DPROF_NLP) | |
293 | ||
294 | # Begin - Following is required to build NetWare specific extensions Perl2UCS & CGI2Perl | |
295 | ||
296 | PERL2UCS = $(EXTDIR)\Perl2UCS\Perl2UCS | |
297 | CGI2PERL = CGI2Perl\CGI2Perl | |
298 | ||
299 | PERL2UCS_NLP = $(AUTODIR)\Perl2UCS\Perl2UCS.nlp | |
300 | CGI2PERL_NLP = \CGI2Perl\CGI2Perl.nlp | |
301 | ||
302 | NETWARE_EXTNS = \ | |
303 | $(PERL2UCS_NLP) \ | |
304 | $(CGI2PERL_NLP) | |
305 | ||
306 | # End | |
307 | ||
308 | ECHO_SRC = TestNLM\echo\echo.c | |
309 | TYPE_SRC = TestNLM\type\type.c | |
310 | ECHO_SRC_OBJ = $(ECHO_SRC:.c=.obj) | |
311 | TYPE_SRC_OBJ = $(TYPE_SRC:.c=.obj) | |
312 | ECHO_NLM = TestNLM\echo\echo.nlm | |
313 | TYPE_NLM = TestNLM\type\type.nlm | |
314 | ||
315 | TEST_NLMS = \ | |
316 | $(ECHO_NLM) \ | |
317 | $(TYPE_NLM) \ | |
318 | ||
319 | ERRNO_PM_NW = $(LIBDIR)\Errno.pm | |
320 | ||
321 | EXTENSION_NPM = \ | |
322 | $(ERRNO_PM_NW) \ | |
323 | ||
324 | ||
325 | !ifndef SCREEN | |
326 | SCREEN = 'none' | |
327 | !endif | |
328 | ||
329 | !ifndef NLM_DESCRIPTION | |
330 | NLM_DESCRIPTION = $(NLM_NAME8) for Netware | |
331 | !endif | |
332 | ||
333 | !ifndef NLM_VERSION | |
334 | NLM_VERSION = 1.0.0 | |
335 | !endif | |
336 | ||
337 | !ifndef NLM_EXT | |
338 | NLM_EXT = NLM | |
339 | !endif | |
340 | ||
341 | !ifndef BUILT | |
342 | BUILT = $(BLDDIR)\$(NLM_NAME8).$(NLM_EXT) | |
343 | !endif | |
344 | ||
345 | !ifndef BASE_IMPORT_FILES | |
346 | BASE_IMPORT_FILES = Import @$(NLMIMPORTS)\clib.imp, @$(NLMIMPORTS)\nlmlib.imp, @$(NLMIMPORTS)\threads.imp, @$(NLMIMPORTS)\nit.imp, @$(NLMIMPORTS)\socklib.imp, @$(NLMIMPORTS)\fpsm.imp, @$(NLMIMPORTS)\lib0.imp | |
347 | !endif | |
348 | ||
349 | !ifdef USE_MPK | |
350 | BASE_IMPORT_FILES = $(BASE_IMPORT_FILES), @$(MPKBASE)\import\mpkorg.imp | |
351 | !endif | |
352 | ||
353 | !ifndef BASE_IMPORT_FNS | |
354 | BASE_IMPORT_FNS = Import ImportSymbol, GetSystemConsoleScreen, LoadModule | |
355 | !endif | |
356 | ||
357 | !ifdef WATCOM | |
358 | NWLIBPATH = $(WATCOM)\lib386\netware | |
359 | LIBPATH386 = $(WATCOM)\lib386 | |
360 | LIBPATH = $(NWLIBPATH);$(LIBPATH386) | |
361 | !else #!ifdef WATCOM | |
362 | !ifdef CODEWARRIOR | |
363 | NWLIBPATH = | |
364 | LIBPATH386 = | |
365 | LIBPATH = | |
366 | !else #!ifdef CODEWARRIOR | |
367 | !error Please define the tools base directory before proceeding | |
368 | !endif #!ifdef CODEWARRIOR | |
369 | !endif #!ifdef WATCOM | |
370 | ||
371 | !ifndef BASE_LIBRARIES | |
372 | !ifdef WATCOM | |
373 | BASE_LIBRARIES = Library plib3s.lib,math3s.lib,clib3s.lib | |
374 | !else | |
375 | !ifdef CODEWARRIOR | |
376 | BASE_LIBRARIES = | |
377 | !endif #!ifdef CODEWARRIOR | |
378 | !endif #!ifdef WATCOM | |
379 | !endif #!ifndef BASE_LIBRARIES | |
380 | ||
381 | COPYRIGHT = Copyright 2001 by Novell, Inc. All rights reserved. | |
382 | ||
383 | EXPORTS = Export @perl.imp | |
384 | ||
385 | # | |
386 | # Set these to wherever you want "nmake install" to put your | |
387 | # newly built perl. | |
388 | # | |
389 | INST_DRV = c: | |
390 | INST_TOP = $(INST_DRV)\perl | |
391 | ||
392 | INST_NW_DRV = i: | |
393 | INST_NW_VOL = sys: | |
394 | INST_NW_TOP1 = $(INST_NW_VOL)\perl | |
395 | INST_NW_TOP2 = $(INST_NW_DRV)\perl | |
396 | #INST_NW_VER = \5.6.1 | |
397 | ||
398 | # | |
399 | # Comment this out if you DON'T want your perl installation to be versioned. | |
400 | # This means that the new installation will overwrite any files from the | |
401 | # old installation at the same INST_TOP location. Leaving it enabled is | |
402 | # the safest route, as perl adds the extra version directory to all the | |
403 | # locations it installs files to. If you disable it, an alternative | |
404 | # versioned installation can be obtained by setting INST_TOP above to a | |
405 | # path that includes an arbitrary version string. | |
406 | # | |
407 | INST_VER = \5.7.1 | |
408 | ||
409 | # | |
410 | # Comment this out if you DON'T want your perl installation to have | |
411 | # architecture specific components. This means that architecture- | |
412 | # specific files will be installed along with the architecture-neutral | |
413 | # files. Leaving it enabled is safer and more flexible, in case you | |
414 | # want to build multiple flavors of perl and install them together in | |
415 | # the same location. Commenting it out gives you a simpler | |
416 | # installation that is easier to understand for beginners. | |
417 | # | |
418 | INST_ARCH = \$(ARCHNAME) | |
419 | ||
420 | # | |
421 | # uncomment to enable multiple interpreters. This is need for fork() | |
422 | # emulation. | |
423 | # | |
424 | USE_MULTI = define | |
425 | ||
426 | # | |
427 | # Beginnings of interpreter cloning/threads; still very incomplete. | |
428 | # This should be enabled to get the fork() emulation. This needs | |
429 | # USE_MULTI as well. | |
430 | # | |
431 | USE_ITHREADS = define | |
432 | ||
433 | # | |
434 | # uncomment to enable the implicit "host" layer for all system calls | |
435 | # made by perl. This needs USE_MULTI above. This is also needed to | |
436 | # get fork(). | |
437 | # | |
438 | USE_IMP_SYS = define | |
439 | ||
440 | # uncomment this to enable the experimental PerlIO I/O subsystem | |
441 | # else USE_STDIO will be defined. | |
442 | #USE_PERLIO = define | |
443 | #USE_STDIO = define | |
444 | ||
445 | # | |
446 | # WARNING! This option is deprecated and will eventually go away (enable | |
447 | # USE_ITHREADS instead). | |
448 | # | |
449 | # uncomment to enable threads-capabilities. This is incompatible with | |
450 | # USE_ITHREADS, and is only here for people who may have come to rely | |
451 | # on the experimental Thread support that was in 5.005. | |
452 | # | |
453 | #USE_5005THREADS= define | |
454 | ||
455 | # | |
456 | # WARNING! This option is deprecated and will eventually go away (enable | |
457 | # USE_MULTI instead). | |
458 | # | |
459 | # uncomment next line if you want to use the PERL_OBJECT build option. | |
460 | # DO NOT ENABLE unless you have legacy code that relies on the C++ | |
461 | # CPerlObj class that was available in 5.005. This cannot be enabled | |
462 | # if you ask for USE_5005THREADS above. | |
463 | # | |
464 | #USE_OBJECT = define | |
465 | ||
466 | # For now let this be here | |
467 | # | |
468 | #CRYPT_SRC = fcrypt.c | |
469 | ||
470 | # For now let this be here | |
471 | # | |
472 | #CRYPT_LIB = fcrypt.lib | |
473 | ||
474 | # | |
475 | # set this if you wish to use perl's malloc | |
476 | # WARNING: Turning this on/off WILL break binary compatibility with extensions | |
477 | # you may have compiled with/without it. Be prepared to recompile all | |
478 | # extensions if you change the default. Currently, this cannot be enabled | |
479 | # if you ask for USE_IMP_SYS above. | |
480 | # | |
481 | #PERL_MALLOC = define | |
482 | ||
483 | # | |
484 | # set this to your email address (perl will guess a value from | |
485 | # from your loginname and your hostname, which may not be right) | |
486 | # | |
487 | #EMAIL = | |
488 | ||
489 | ## | |
490 | ## Build configuration ends. | |
491 | ## | |
492 | ||
493 | ##################### CHANGE THESE ONLY IF YOU MUST ##################### | |
494 | ||
495 | !IF "$(CRYPT_SRC)$(CRYPT_LIB)" == "" | |
496 | D_CRYPT = undef | |
497 | !ELSE | |
498 | D_CRYPT = define | |
499 | CRYPT_FLAG = -DHAVE_DES_FCRYPT | |
500 | !ENDIF | |
501 | ||
502 | !IF "$(USE_OBJECT)" == "define" | |
503 | PERL_MALLOC = undef | |
504 | USE_5005THREADS = undef | |
505 | USE_MULTI = undef | |
506 | USE_IMP_SYS = define | |
507 | !ENDIF | |
508 | ||
509 | !IF "$(PERL_MALLOC)" == "" | |
510 | PERL_MALLOC = undef | |
511 | !ENDIF | |
512 | ||
513 | !IF "$(USE_5005THREADS)" == "" | |
514 | USE_5005THREADS = undef | |
515 | !ENDIF | |
516 | ||
517 | !IF "$(USE_5005THREADS)" == "define" | |
518 | USE_ITHREADS = undef | |
519 | !ENDIF | |
520 | ||
521 | !IF "$(USE_IMP_SYS)" == "define" | |
522 | PERL_MALLOC = undef | |
523 | !ENDIF | |
524 | ||
525 | !IF "$(USE_MULTI)" == "" | |
526 | USE_MULTI = undef | |
527 | !ENDIF | |
528 | ||
529 | !IF "$(USE_OBJECT)" == "" | |
530 | USE_OBJECT = undef | |
531 | !ENDIF | |
532 | ||
533 | !IF "$(USE_ITHREADS)" == "" | |
534 | USE_ITHREADS = undef | |
535 | !ENDIF | |
536 | ||
537 | !IF "$(USE_IMP_SYS)" == "" | |
538 | USE_IMP_SYS = undef | |
539 | !ENDIF | |
540 | ||
541 | !IF "$(USE_PERLCRT)" == "" | |
542 | USE_PERLCRT = undef | |
543 | !ENDIF | |
544 | ||
545 | !IF "$(USE_IMP_SYS)$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" == "defineundefundefundef" | |
546 | USE_MULTI = define | |
547 | !ENDIF | |
548 | ||
549 | !IF "$(USE_ITHREADS)$(USE_MULTI)$(USE_OBJECT)" == "defineundefundef" | |
550 | USE_MULTI = define | |
551 | USE_5005THREADS = undef | |
552 | !ENDIF | |
553 | ||
554 | !IF "$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" != "undefundefundef" | |
555 | BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT | |
556 | !ENDIF | |
557 | ||
558 | !IF "$(USE_IMP_SYS)" != "undef" | |
559 | BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS | |
560 | !ENDIF | |
561 | ||
562 | !IF "$(PROCESSOR_ARCHITECTURE)" == "" | |
563 | PROCESSOR_ARCHITECTURE = x86 | |
564 | !ENDIF | |
565 | ||
566 | !IF "$(USE_OBJECT)" == "define" | |
567 | ARCHNAME = NetWare-$(PROCESSOR_ARCHITECTURE)-object | |
568 | !ELSE | |
569 | !IF "$(USE_5005THREADS)" == "define" | |
570 | ARCHNAME = NetWare-$(PROCESSOR_ARCHITECTURE)-thread | |
571 | !ELSE | |
572 | !IF "$(USE_MULTI)" == "define" | |
573 | ARCHNAME = NetWare-$(PROCESSOR_ARCHITECTURE)-multi | |
574 | !ELSE | |
575 | ARCHNAME = NetWare-$(PROCESSOR_ARCHITECTURE) | |
576 | !ENDIF | |
577 | !ENDIF | |
578 | !ENDIF | |
579 | ||
580 | !IF "$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" != "undefundefundef" | |
581 | ADD_BUILDOPT = $(ADD_BUILDOPT) -DPERL_IMPLICIT_CONTEXT | |
582 | !ENDIF | |
583 | ||
584 | !IF "$(USE_IMP_SYS)" != "undef" | |
585 | ADD_BUILDOPT = $(ADD_BUILDOPT) -DPERL_IMPLICIT_SYS | |
586 | !ENDIF | |
587 | ||
588 | !IF "$(USE_ITHREADS)" == "define" | |
589 | ARCHNAME = $(ARCHNAME)-thread | |
590 | !ENDIF | |
591 | ||
592 | !IF "$(USE_PERLIO)" == "define" | |
593 | USE_STDIO = undef | |
594 | ADD_BUILDOPT = $(ADD_BUILDOPT) -DUSE_PERLIO | |
595 | ARCHNAME = $(ARCHNAME)-perlio | |
596 | !ELSE | |
597 | #USE_STDIO = define | |
598 | #ADD_BUILDOPT = $(ADD_BUILDOPT) -DUSE_STDIO | |
599 | !ENDIF | |
600 | ||
601 | ARCHDIR = ..\lib\$(ARCHNAME) | |
602 | COREDIR = ..\lib\CORE | |
603 | AUTODIR = ..\lib\auto | |
604 | LIBDIR = ..\lib | |
605 | EXTDIR = ..\ext | |
606 | PODDIR = ..\pod | |
607 | EXTUTILSDIR = $(LIBDIR)\ExtUtils | |
608 | ||
609 | # | |
610 | INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin | |
611 | INST_BIN = $(INST_SCRIPT)$(INST_ARCH) | |
612 | INST_LIB = $(INST_TOP)$(INST_VER)\lib | |
613 | INST_ARCHLIB = $(INST_LIB)$(INST_ARCH) | |
614 | INST_COREDIR = $(INST_ARCHLIB)\CORE | |
615 | INST_POD = $(INST_LIB)\pod | |
616 | INST_HTML = $(INST_POD)\html | |
617 | ||
618 | # | |
619 | # Options | |
620 | # | |
621 | ||
622 | !IF "$(USE_OBJECT)" == "define" | |
623 | OPTIMIZE = $(OPTIMIZE) $(CXX_FLAG) | |
624 | BUILDOPT = $(BUILDOPT) -DPERL_OBJECT | |
625 | !ENDIF | |
626 | ||
627 | OBJOUT_FLAG = -Fo | |
628 | EXEOUT_FLAG = -Fe | |
629 | ||
630 | ||
631 | #################### do not edit below this line ####################### | |
632 | ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ############## | |
633 | ||
634 | o = .obj | |
635 | ||
636 | # | |
637 | # Rules | |
638 | # | |
639 | ||
640 | .SUFFIXES : .c $(o) .nlm .lib .nlp | |
641 | ||
642 | ||
643 | # | |
644 | # various targets | |
645 | PERLIMPLIB = ..\perl.lib | |
646 | ||
647 | MINIPERL = ..\miniperl.exe | |
648 | CONFIGPM = ..\lib\Config.pm | |
649 | MINIMOD = ..\lib\ExtUtils\Miniperl.pm | |
650 | X2P = ..\x2p\a2p.nlm | |
651 | ||
652 | PL2BAT = ..\win32\bin\pl2bat.pl | |
653 | ||
654 | UTILS = \ | |
655 | ..\utils\h2ph \ | |
656 | ..\utils\splain \ | |
657 | ..\utils\dprofpp \ | |
658 | ..\utils\perlbug \ | |
659 | ..\utils\pl2pm \ | |
660 | ..\utils\c2ph \ | |
661 | ..\utils\h2xs \ | |
662 | ..\utils\perldoc \ | |
663 | ..\utils\perlcc \ | |
664 | ..\pod\checkpods \ | |
665 | ..\pod\pod2html \ | |
666 | ..\pod\pod2latex \ | |
667 | ..\pod\pod2man \ | |
668 | ..\pod\pod2text \ | |
669 | ..\pod\pod2usage \ | |
670 | ..\pod\podchecker \ | |
671 | ..\pod\podselect \ | |
672 | ..\x2p\find2perl \ | |
673 | ..\x2p\s2p | |
674 | ||
675 | MAKE = nmake -nologo | |
676 | ||
677 | XCOPY = xcopy /f /r /i /d | |
678 | RCOPY = xcopy /f /r /i /e /d | |
679 | NOOP = @echo | |
680 | NULL = | |
681 | ||
682 | # | |
683 | # filenames given to xsubpp must have forward slashes (since it puts | |
684 | # full pathnames in #line strings) | |
685 | XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \ | |
686 | -C++ -prototypes | |
687 | ||
688 | MICROCORE_SRC = \ | |
689 | ..\av.c \ | |
690 | ..\deb.c \ | |
691 | ..\doio.c \ | |
692 | ..\doop.c \ | |
693 | ..\dump.c \ | |
694 | ..\globals.c \ | |
695 | ..\gv.c \ | |
696 | ..\hv.c \ | |
697 | ..\mg.c \ | |
698 | ..\op.c \ | |
699 | ..\perl.c \ | |
700 | ..\perlapi.c \ | |
701 | ..\perly.c \ | |
702 | ..\pp.c \ | |
703 | ..\pp_ctl.c \ | |
704 | ..\pp_hot.c \ | |
705 | ..\pp_sys.c \ | |
706 | ..\regcomp.c \ | |
707 | ..\regexec.c \ | |
708 | ..\run.c \ | |
709 | ..\scope.c \ | |
710 | ..\sv.c \ | |
711 | ..\taint.c \ | |
712 | ..\toke.c \ | |
713 | ..\universal.c \ | |
714 | ..\utf8.c \ | |
715 | ..\util.c \ | |
716 | ..\xsutils.c | |
717 | ||
718 | #EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c | |
719 | ||
720 | !IF "$(PERL_MALLOC)" == "define" | |
721 | EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c | |
722 | !ENDIF | |
723 | ||
724 | #!IF "$(USE_OBJECT)" != "define" | |
725 | #EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c | |
726 | #!ENDIF | |
727 | ||
728 | !IF "$(CRYPT_SRC)" != "" | |
729 | NW_SRC = $(NW_SRC) .\$(CRYPT_SRC) | |
730 | !ENDIF | |
731 | ||
732 | DLL_SRC = $(DYNALOADER).c | |
733 | ||
734 | X2P_SRC = \ | |
735 | ..\x2p\a2p.c \ | |
736 | ..\x2p\hash.c \ | |
737 | ..\x2p\str.c \ | |
738 | ..\x2p\util.c \ | |
739 | ..\x2p\walk.c | |
740 | ||
741 | CORE_NOCFG_H = \ | |
742 | ..\av.h \ | |
743 | ..\cop.h \ | |
744 | ..\cv.h \ | |
745 | ..\dosish.h \ | |
746 | ..\embed.h \ | |
747 | ..\form.h \ | |
748 | ..\gv.h \ | |
749 | ..\handy.h \ | |
750 | ..\hv.h \ | |
751 | ..\iperlsys.h \ | |
752 | ..\mg.h \ | |
753 | ..\nostdio.h \ | |
754 | ..\op.h \ | |
755 | ..\opcode.h \ | |
756 | ..\perl.h \ | |
757 | ..\perlapi.h \ | |
758 | ..\perlsdio.h \ | |
759 | ..\perlsfio.h \ | |
760 | ..\perly.h \ | |
761 | ..\pp.h \ | |
762 | ..\proto.h \ | |
763 | ..\regexp.h \ | |
764 | ..\scope.h \ | |
765 | ..\sv.h \ | |
766 | ..\thread.h \ | |
767 | ..\unixish.h \ | |
768 | ..\utf8.h \ | |
769 | ..\util.h \ | |
770 | ..\warnings.h \ | |
771 | ..\XSUB.h \ | |
772 | ..\EXTERN.h \ | |
773 | ..\perlvars.h \ | |
774 | ..\intrpvar.h \ | |
775 | ..\thrdvar.h \ | |
776 | ||
777 | CORE_H = $(CORE_NOCFG_H) .\config.h | |
778 | ||
779 | DLL_OBJ = $(DLL_SRC:.c=.obj) | |
780 | X2P_OBJ = $(X2P_SRC:.c=.obj) | |
781 | ||
782 | DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \ | |
783 | Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob | |
784 | ||
785 | STATIC_EXT = DynaLoader | |
786 | NONXS_EXT = Errno | |
787 | ||
788 | DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader | |
789 | SOCKET = $(EXTDIR)\Socket\Socket | |
790 | FCNTL = $(EXTDIR)\Fcntl\Fcntl | |
791 | OPCODE = $(EXTDIR)\Opcode\Opcode | |
792 | SDBM_FILE = $(EXTDIR)\SDBM_File\SDBM_File | |
793 | IO = $(EXTDIR)\IO\IO | |
794 | POSIX = $(EXTDIR)\POSIX\POSIX | |
795 | ATTRS = $(EXTDIR)\attrs\attrs | |
796 | THREAD = $(EXTDIR)\Thread\Thread | |
797 | B = $(EXTDIR)\B\B | |
798 | RE = $(EXTDIR)\re\re | |
799 | DUMPER = $(EXTDIR)\Data\Dumper\Dumper | |
800 | ERRNO = $(EXTDIR)\Errno\Errno | |
801 | PEEK = $(EXTDIR)\Devel\Peek\Peek | |
802 | BYTELOADER = $(EXTDIR)\ByteLoader\ByteLoader | |
803 | DPROF = $(EXTDIR)\Devel\DProf\DProf | |
804 | GLOB = $(EXTDIR)\File\Glob\Glob | |
805 | ||
806 | EXTENSION_C = \ | |
807 | $(SOCKET).c \ | |
808 | $(FCNTL).c \ | |
809 | $(OPCODE).c \ | |
810 | $(SDBM_FILE).c \ | |
811 | $(IO).c \ | |
812 | $(POSIX).c \ | |
813 | $(ATTRS).c \ | |
814 | $(THREAD).c \ | |
815 | $(RE).c \ | |
816 | $(DUMPER).c \ | |
817 | $(PEEK).c \ | |
818 | $(B).c \ | |
819 | $(BYTELOADER).c \ | |
820 | $(DPROF).c \ | |
821 | $(GLOB).c | |
822 | ||
823 | POD2HTML = $(PODDIR)\pod2html | |
824 | POD2MAN = $(PODDIR)\pod2man | |
825 | POD2LATEX = $(PODDIR)\pod2latex | |
826 | POD2TEXT = $(PODDIR)\pod2text | |
827 | ||
828 | # | |
829 | # Top targets | |
830 | # | |
831 | ||
832 | all : .cleanoldfiles .\nwconfig.h $(CONFIGPM) $(NLM_NAME) $(EXTENSION_NLP) $(EXTENSION_NPM) $(TEST_NLMS) $(NETWARE_EXTNS) | |
833 | ||
834 | #------------------------------------------------------------ | |
835 | ||
836 | ..\config.sh : config.nw5 $(MINIPERL) config_sh.PL | |
837 | $(MINIPERL) -I..\lib config_sh.PL $(NW_CFG_VARS) config.nw5 > ..\config.sh | |
838 | ||
839 | # this target is for when changes to the main config.sh happen | |
840 | # edit config.{b,v,g,w}c and make this target once for each supported | |
841 | # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`) | |
842 | regen_config_h: | |
843 | perl config_sh.PL $(NW_CFG_VARS) $(NW_CFGSH_TMPL) > ..\config.sh | |
844 | cd .. | |
845 | -del /f perl.exe | |
846 | perl configpm | |
847 | cd netware | |
848 | -del /f $(NW_CFGH_TMPL) | |
849 | -mkdir $(COREDIR) | |
850 | -perl -I..\lib config_h.PL "INST_VER=$(INST_VER)" | |
851 | rename config.h $(NW_CFGH_TMPL) | |
852 | ||
853 | $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl | |
854 | cd .. && miniperl configpm | |
855 | if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL) | |
856 | $(XCOPY) ..\*.h $(COREDIR)\*.* | |
857 | $(XCOPY) *.h $(COREDIR)\*.* | |
858 | $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.* | |
859 | if exist include\* $(RCOPY) include $(COREDIR)\*.* | |
860 | $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \ | |
861 | || $(MAKE) /$(MAKEFLAGS) $(CONFIGPM) | |
862 | ||
863 | $(MINIPERL) : | |
864 | $(error)Please build $(MINIPERL) before continuing | |
865 | ||
866 | $(MINIMOD) : $(MINIPERL) ..\minimod.pl | |
867 | cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm | |
868 | ||
869 | ..\x2p\a2p$(o) : ..\x2p\a2p.c | |
870 | @echo $(MPKMESSAGE)...$(BLDMESG)...$@ | |
871 | @$(C_COMPILER) -I..\x2p $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err ..\x2p\a2p.c | |
872 | ||
873 | ..\x2p\hash$(o) : ..\x2p\hash.c | |
874 | @echo $(MPKMESSAGE)...$(BLDMESG)...$@ | |
875 | @$(C_COMPILER) -I..\x2p $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err ..\x2p\hash.c | |
876 | ||
877 | ..\x2p\str$(o) : ..\x2p\str.c | |
878 | @echo $(MPKMESSAGE)...$(BLDMESG)...$@ | |
879 | @$(C_COMPILER) -I..\x2p $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err ..\x2p\str.c | |
880 | ||
881 | ..\x2p\util$(o) : ..\x2p\util.c | |
882 | @echo $(MPKMESSAGE)...$(BLDMESG)...$@ | |
883 | @$(C_COMPILER) -I..\x2p $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err ..\x2p\util.c | |
884 | ||
885 | ..\x2p\walk$(o) : ..\x2p\walk.c | |
886 | @echo $(MPKMESSAGE)...$(BLDMESG)...$@ | |
887 | @$(C_COMPILER) -I..\x2p $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err ..\x2p\walk.c | |
888 | ||
889 | $(X2P) : $(MINIPERL) $(X2P_OBJ) | |
890 | $(MINIPERL) ..\x2p\find2perl.PL | |
891 | $(MINIPERL) ..\x2p\s2p.PL | |
892 | !ifdef USE_XDC | |
893 | $(MPKTOOL) $(XDCFLAGS) $*.xdc | |
894 | !endif | |
895 | !ifdef WATCOM | |
896 | @$(NLM_LINK) @<<$*.link | |
897 | Form Novell NLM 'Awk to Perl converter' | |
898 | Name $(X2P) | |
899 | Option Quiet | |
900 | Option Version = $(NLM_VERSION) | |
901 | Option Copyright '$(COPYRIGHT)' | |
902 | Option Caseexact | |
903 | Option Map=$*.map, Verbose, screenname 'System Console' | |
904 | Option Stack=32k | |
905 | Option SYMFILE=$*.sym | |
906 | !ifdef USE_XDC | |
907 | OPTION XDCDATA=$*.xdc | |
908 | !endif | |
909 | Option NoDefaultLibs | |
910 | $(EXTRA_LINK_OPTION) | |
911 | !if "$(MAKE_TYPE)"=="Debug" | |
912 | Debug novell | |
913 | Debug codeview | |
914 | !endif | |
915 | LibPath $(LIBPATH) | |
916 | $(BASE_LIBRARIES) | |
917 | Module clib | |
918 | $(BASE_IMPORT_FNS) | |
919 | $(BASE_IMPORT_FILES) | |
920 | $(ADD_IMPORT_FNS) | |
921 | Import @perl.imp | |
922 | $(EXPORTS) | |
923 | File $(X2P_OBJ:.obj=,) .\$(BLDDIR)\clibstuf.obj | |
924 | <<KEEP | |
925 | !else | |
926 | !ifdef CODEWARRIOR | |
927 | # Linker definitions and lining come here for CODEWARRIOR | |
928 | !endif | |
929 | !endif | |
930 | ||
931 | $(EXTDIR)\DynaLoader\dl_netware.xs: dl_netware.xs | |
932 | copy dl_netware.xs $(EXTDIR)\DynaLoader\dl_netware.xs | |
933 | ||
934 | HEADERS : | |
935 | @echo . . . . making stdio.h and string.h | |
936 | @copy << stdio.h >\nul | |
937 | ||
938 | /* | |
939 | * Copyright © 2001 Novell, Inc. All Rights Reserved. | |
940 | * | |
941 | * You may distribute under the terms of either the GNU General Public | |
942 | * License or the Artistic License, as specified in the README file. | |
943 | * | |
944 | */ | |
945 | ||
946 | /* | |
947 | * FILENAME : stdio.h | |
948 | * DESCRIPTION : Generated header file, do not edit. See makefile. | |
949 | * This header file causes the includer to use clibstuf.h | |
950 | * The purpose of clibstuf is to make sure that Perl, cgi2perl and | |
951 | * all the perl extension nlm's (*.NLP) use the Novell Netware CLIB versions | |
952 | * of standard functions. This code loads up a whole bunch of function pointers | |
953 | * to point at the standard CLIB functions. | |
954 | * Author : HYAK | |
955 | * Date : January 2001. | |
956 | * | |
957 | */ | |
958 | ||
959 | ||
960 | #ifndef __Stdio_H__ | |
961 | #define __Stdio_H__ | |
962 | ||
963 | ||
964 | #include "$(NLMSDKBASE)\INCLUDE\NLM\stdio.h" | |
965 | #include "clibsdio.h" | |
966 | ||
967 | ||
968 | #endif // __Stdio_H__ | |
969 | ||
970 | << | |
971 | @copy stdio.h $(COREDIR) | |
972 | ||
973 | @copy << string.h >\nul | |
974 | ||
975 | /* | |
976 | * Copyright © 2001 Novell, Inc. All Rights Reserved. | |
977 | * | |
978 | * You may distribute under the terms of either the GNU General Public | |
979 | * License or the Artistic License, as specified in the README file. | |
980 | * | |
981 | */ | |
982 | ||
983 | /* | |
984 | * FILENAME : string.h | |
985 | * DESCRIPTION : Generated header file, do not edit. See makefile. | |
986 | * This header file causes the includer to use clibstuf.h | |
987 | * The purpose of clibstuf is to make sure that Perl, cgi2perl and | |
988 | * all the perl extension nlm's (*.NLP) use the Novell Netware CLIB versions | |
989 | * of standard functions. This code loads up a whole bunch of function pointers | |
990 | * to point at the standard CLIB functions. | |
991 | * Author : HYAK | |
992 | * Date : January 2001. | |
993 | * | |
994 | */ | |
995 | ||
996 | ||
997 | #ifndef __String_H__ | |
998 | #define __String_H__ | |
999 | ||
1000 | ||
1001 | #include "$(NLMSDKBASE)\INCLUDE\NLM\string.h" | |
1002 | #include "clibstr.h" | |
1003 | ||
1004 | ||
1005 | #endif // __String_H__ | |
1006 | ||
1007 | << | |
1008 | @copy string.h $(COREDIR) | |
1009 | ||
1010 | ||
1011 | $(NLM_NAME): MESSAGE HEADERS $(BLDDIR)\nul $(NLM_OBJ) $(NEWTARE_OBJ_DEP) $(PERL_IO_OBJ_DEP) $(PERL_LIB_OBJ_DEP) $(DLL_OBJ) .XDC $(PERLIMPLIB) $(EXT_MAIN_OBJ) | |
1012 | @echo======= Linking $@ at $(MAKEDIR)\$(BLDDIR) ======= | |
1013 | !ifdef WATCOM | |
1014 | @$(NLM_LINK) @<<$(BLDDIR)\$*.link | |
1015 | Form Novell NLM '$(NLM_DESCRIPTION)' | |
1016 | Name $(BUILT) | |
1017 | Option Quiet | |
1018 | Option Version = $(NLM_VERSION) | |
1019 | Option Copyright '$(COPYRIGHT)' | |
1020 | Option Caseexact | |
1021 | Option Map=$(BLDDIR)\$(NLM_NAME8).map, Verbose, screenname $(SCREEN) | |
1022 | Option Stack=1000 | |
1023 | !ifdef NLM_NAME8 | |
1024 | Option SYMFILE=$(BLDDIR)\$(NLM_NAME8).sym | |
1025 | !ifdef USE_XDC | |
1026 | OPTION XDCDATA=$(BLDDIR)\$(NLM_NAME8).xdc | |
1027 | !endif | |
1028 | !else | |
1029 | Option SYMFILE=$(BLDDIR)\$(NLM_NAME).sym | |
1030 | !ifdef USE_XDC | |
1031 | OPTION XDCDATA=$(BLDDIR)\$(NLM_NAME).xdc | |
1032 | !endif | |
1033 | !endif | |
1034 | Option NoDefaultLibs | |
1035 | $(EXTRA_LINK_OPTION) | |
1036 | !if "$(MAKE_TYPE)"=="Debug" | |
1037 | # Debug all | |
1038 | Debug novell | |
1039 | Debug codeview | |
1040 | !endif | |
1041 | LibPath $(LIBPATH) | |
1042 | $(BASE_LIBRARIES) | |
1043 | Module clib | |
1044 | $(BASE_IMPORT_FNS) | |
1045 | $(BASE_IMPORT_FILES) | |
1046 | $(ADD_IMPORT_FNS) | |
1047 | Import @perl.imp | |
1048 | $(EXPORTS) | |
1049 | File $(NEWTARE_OBJ_DEP:.obj=.obj,) $(NLM_OBJ:.obj=.obj,) $(PERL_IO_OBJ_DEP:.obj=.obj,) $(PERL_LIB_OBJ_DEP:.obj=.obj,) $(DLL_OBJ:.obj=.obj,) | |
1050 | <<KEEP | |
1051 | !else | |
1052 | !ifdef CODEWARRIOR | |
1053 | # Linker definitions and lining come here for CODEWARRIOR | |
1054 | !endif | |
1055 | !endif | |
1056 | copy ..\win32\splittree.pl .. | |
1057 | $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR) | |
1058 | ||
1059 | ||
1060 | !if "$(MAKE_TYPE)"=="Debug" | |
1061 | !ifdef NLM_NAME8 | |
1062 | .\bat\cvpack $(BLDDIR)\$(NLM_NAME8).sym | |
1063 | !else | |
1064 | .\bat\cvpack $(BLDDIR)\$(NLM_NAME).sym | |
1065 | !endif | |
1066 | !endif | |
1067 | ||
1068 | @echo======= Finished building $(BUILT). | |
1069 | ||
1070 | # Create the debug\release directory if not existing | |
1071 | $(BLDDIR)\nul: | |
1072 | @echo . . . . mkdir $(BLDDIR) | |
1073 | @mkdir $(BLDDIR) | |
1074 | ||
1075 | MESSAGE: | |
1076 | @echo======= $(MAKE_ACTION)ing $(NLM_NAME) at $(MAKEDIR)\$(BLDDIR) ======= | |
1077 | ||
1078 | .XDC: | |
1079 | !ifdef USE_XDC | |
1080 | @echo======= Creating XDC file | |
1081 | !ifdef NLM_NAME8 | |
1082 | $(MPKTOOL) $(XDCFLAGS) $(BLDDIR)\$(NLM_NAME8).xdc | |
1083 | !else | |
1084 | $(MPKTOOL) $(XDCFLAGS) $(BLDDIR)\$(NLM_NAME).xdc | |
1085 | !endif | |
1086 | !endif | |
1087 | ||
1088 | $(PERLIMPLIB): perllib.def | |
1089 | $(NLM_LIB) -def:perllib.def -out:$(PERLIMPLIB) | |
1090 | $(XCOPY) $(PERLIMPLIB) $(COREDIR) | |
1091 | ||
1092 | perllib.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl | |
1093 | $(MINIPERL) -w ..\makedef.pl PLATFORM=netware FILETYPE=def $(BS_CFLAGS) $(DEFINES) $(ADD_BUILDOPT) \ | |
1094 | CCTYPE=$(CCTYPE) > perllib.def | |
1095 | $(MINIPERL) -w ..\makedef.pl PLATFORM=netware FILETYPE=imp $(BS_CFLAGS) $(DEFINES) $(ADD_BUILDOPT) \ | |
1096 | CCTYPE=$(CCTYPE) > perl.imp | |
1097 | ||
1098 | $(DLL_OBJ) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c | |
1099 | @echo $(MPKMESSAGE)...$(BLDMESG)...$@ | |
1100 | @$(C_COMPILER) @<<$(BLDDIR)\$(*F).options | |
1101 | $(NLM_INCLUDES) -I$(EXTDIR)\DynaLoader\ $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$(BLDDIR)\$(*F).err $(EXTDIR)\DynaLoader\$(*F).c | |
1102 | <<KEEP | |
1103 | ||
1104 | $(DYNALOADER).c : $(MINIPERL) $(EXTDIR)\DynaLoader\dl_netware.xs $(CONFIGPM) | |
1105 | if not exist $(AUTODIR) mkdir $(AUTODIR) | |
1106 | cd $(EXTDIR)\$(*B) | |
1107 | ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL | |
1108 | ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL | |
1109 | cd ..\..\netware | |
1110 | $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL) | |
1111 | $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL) | |
1112 | cd $(EXTDIR)\$(*B) | |
1113 | $(XSUBPP) dl_netware.xs > $(*B).c | |
1114 | cd ..\..\netware | |
1115 | ||
1116 | $(PERL_LIB_OBJ_DEP) : $(NW_HOST_H_FILES) $(*F).c | |
1117 | @echo $(MPKMESSAGE)...$(BLDMESG)...$@ | |
1118 | @$(CPP_COMPILER) @<<$(BLDDIR)\$(*F).options | |
1119 | -I.. $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err $(*F).c | |
1120 | <<KEEP | |
1121 | ||
1122 | $(PERL_IO_OBJ_DEP) : ..\$(*F).c | |
1123 | @echo $(MPKMESSAGE) $(BLDMESG) $@ | |
1124 | @$(C_COMPILER) @<<$(BLDDIR)\$(*F).options | |
1125 | $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err ..\$(*F).c | |
1126 | <<KEEP | |
1127 | ||
1128 | $(NLM_OBJ) : ..\$(*F).c | |
1129 | @echo $(MPKMESSAGE) $(BLDMESG) $@ | |
1130 | @$(C_COMPILER) @<<$(BLDDIR)\$(*F).options | |
1131 | $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err ..\$(*F).c | |
1132 | <<KEEP | |
1133 | ||
1134 | $(NEWTARE_OBJ_DEP) : $(NW_H_FILES) $(NW_HOST_H_FILES) $(*F).c | |
1135 | @echo $(MPKMESSAGE) $(BLDMESG) $@ | |
1136 | @$(C_COMPILER) @<<$(BLDDIR)\$(*F).options | |
1137 | $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err $(*F).c | |
1138 | <<KEEP | |
1139 | ||
1140 | $(EXT_MAIN_OBJ) : $(CLIB_H_FILES) | |
1141 | @echo $(MPKMESSAGE) $(BLDMESG) $@ | |
1142 | @$(C_COMPILER) @<<$(BLDDIR)\$(*F).options | |
1143 | $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err $(*F).c | |
1144 | <<KEEP | |
1145 | $(NLM_LIB) $@ $(NLMIMPORTS)\prelude.obj -out:$*.lib | |
1146 | @copy $*.lib $(COREDIR) | |
1147 | ||
1148 | # Delete any files that might have got created during building miniperl.exe | |
1149 | # config.sh will definitely be created | |
1150 | # COREDIR might have got created | |
1151 | .cleanoldfiles : | |
1152 | -del ..\config.sh | |
1153 | -del .\Main.obj | |
1154 | -del .\Main.lib | |
1155 | -rmdir /s /q $(AUTODIR) | |
1156 | -rmdir /s /q $(COREDIR) | |
1157 | ||
1158 | .\nwconfig.h : $(NW_CFGH_TMPL) | |
1159 | -del /f config.h | |
1160 | copy $(NW_CFGH_TMPL) config.h | |
1161 | ||
1162 | # REQUIRED WHEN WE INCLUDE CONFIGPM OR REGEN_CONFIG - sgp | |
1163 | #..\nwconfig.sh : config.nw5 $(MINIPERL) config_sh.PL | |
1164 | # $(MINIPERL) -I..\lib config_sh.PL $(NW_CFG_VARS) config.nw5 > ..\config.sh | |
1165 | # @pause | |
1166 | # cd .. | |
1167 | # del config.sh | |
1168 | # rename nwconfig.sh config.sh | |
1169 | # cd netware | |
1170 | ||
1171 | config.nw5 : $(NW_CFGSH_TMPL) | |
1172 | copy $(NW_CFGSH_TMPL) config.nw5 | |
1173 | ||
1174 | $(SOCKET_NLP): $(NLM_NAME) $(SOCKET).xs | |
1175 | cd $(EXTDIR)\$(*B) | |
1176 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1177 | $(MAKE) | |
1178 | cd ..\..\netware | |
1179 | ||
1180 | $(FCNTL_NLP): | |
1181 | cd $(EXTDIR)\$(*B) | |
1182 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1183 | $(MAKE) | |
1184 | cd ..\..\netware | |
1185 | ||
1186 | $(IO_NLP): | |
1187 | cd $(EXTDIR)\$(*B) | |
1188 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1189 | $(MAKE) | |
1190 | cd ..\..\netware | |
1191 | ||
1192 | $(OPCODE_NLP): | |
1193 | cd $(EXTDIR)\$(*B) | |
1194 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1195 | $(MAKE) | |
1196 | cd ..\..\netware | |
1197 | ||
1198 | $(B_NLP): | |
1199 | cd $(EXTDIR)\$(*B) | |
1200 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1201 | $(MAKE) | |
1202 | cd ..\..\netware | |
1203 | ||
1204 | $(DUMPER_NLP): | |
1205 | cd $(EXTDIR)\Data\$(*B) | |
1206 | ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl | |
1207 | $(MAKE) | |
1208 | cd ..\..\..\netware | |
1209 | ||
1210 | $(PEEK_NLP): | |
1211 | cd $(EXTDIR)\Devel\$(*B) | |
1212 | ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl | |
1213 | $(MAKE) | |
1214 | cd ..\..\..\netware | |
1215 | ||
1216 | $(RE_NLP): | |
1217 | cd $(EXTDIR)\$(*B) | |
1218 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1219 | $(MAKE) | |
1220 | cd ..\..\netware | |
1221 | ||
1222 | $(BYTELOADER_NLP): | |
1223 | cd $(EXTDIR)\$(*B) | |
1224 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1225 | $(MAKE) | |
1226 | cd ..\..\netware | |
1227 | ||
1228 | $(DPROF_NLP): | |
1229 | cd $(EXTDIR)\Devel\$(*B) | |
1230 | ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl | |
1231 | $(MAKE) | |
1232 | cd ..\..\..\netware | |
1233 | ||
1234 | $(GLOB_NLP): | |
1235 | cd $(EXTDIR)\File\$(*B) | |
1236 | ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl | |
1237 | $(MAKE) | |
1238 | cd ..\..\..\netware | |
1239 | ||
1240 | $(POSIX_NLP): | |
1241 | cd $(EXTDIR)\$(*B) | |
1242 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1243 | $(MAKE) | |
1244 | cd ..\..\netware | |
1245 | ||
1246 | $(THREAD_NLP): | |
1247 | cd $(EXTDIR)\$(*B) | |
1248 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1249 | $(MAKE) | |
1250 | cd ..\..\netware | |
1251 | ||
1252 | $(ATTRS_NLP): | |
1253 | cd $(EXTDIR)\$(*B) | |
1254 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1255 | $(MAKE) | |
1256 | cd ..\..\netware | |
1257 | ||
1258 | $(SDBM_FILE_NLP): | |
1259 | cd $(EXTDIR)\$(*B) | |
1260 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1261 | $(MAKE) | |
1262 | cd ..\..\netware | |
1263 | ||
1264 | $(ERRNO_PM_NW): | |
1265 | cd $(EXTDIR)\$(*B) | |
1266 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1267 | $(MAKE) | |
1268 | cd ..\..\netware | |
1269 | ||
1270 | $(ECHO_SRC_OBJ): $*.c | |
1271 | @echo $(MPKMESSAGE) $(BLDMESG) $@ | |
1272 | @$(C_COMPILER) @<<$*.options | |
1273 | $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err $*.c | |
1274 | <<KEEP | |
1275 | ||
1276 | $(ECHO_NLM): $(ECHO_SRC_OBJ) | |
1277 | @echo======= Linking $@ ======= | |
1278 | !ifdef USE_XDC | |
1279 | $(MPKTOOL) $(XDCFLAGS) $*.xdc | |
1280 | !endif | |
1281 | !ifdef WATCOM | |
1282 | @$(NLM_LINK) @<<$*.link | |
1283 | Form Novell NLM 'DOS echo emulation for Perl Testing' Name $@ | |
1284 | Option Quiet Option Version = $(NLM_VERSION) Option Copyright '$(COPYRIGHT)' Option Caseexact Option Map=$*.map, Verbose, screenname 'System Console' Option Stack=1000 Option SYMFILE=$*.sym Option NoDefaultLibs | |
1285 | !ifdef USE_XDC | |
1286 | OPTION XDCDATA=$*.xdc | |
1287 | !endif | |
1288 | $(EXTRA_LINK_OPTION) | |
1289 | !if "$(MAKE_TYPE)"=="Debug" | |
1290 | Debug novell | |
1291 | Debug codeview | |
1292 | !endif | |
1293 | LibPath $(LIBPATH) | |
1294 | $(BASE_LIBRARIES) Module clib $(BASE_IMPORT_FNS) $(BASE_IMPORT_FILES) $(ADD_IMPORT_FNS) | |
1295 | Import @perl.imp | |
1296 | $(EXPORTS) | |
1297 | File $(ECHO_SRC_OBJ:.obj=.obj,) .\$(BLDDIR)\clibstuf.obj | |
1298 | <<KEEP | |
1299 | !else | |
1300 | !ifdef CODEWARRIOR | |
1301 | # Linker definitions and lining come here for CODEWARRIOR | |
1302 | !endif | |
1303 | !endif | |
1304 | @echo======= Linking Complete ======= | |
1305 | ||
1306 | $(TYPE_SRC_OBJ): $*.c | |
1307 | @echo $(MPKMESSAGE) $(BLDMESG) $@ | |
1308 | @$(C_COMPILER) @<<$*.options | |
1309 | $(NLM_INCLUDES) $(COMPLER_FLAGS) $(ADD_LOCDEFS) $(OBJOUT_FLAG)$@ $(ERROR_FLAG)$*.err $*.c | |
1310 | <<KEEP | |
1311 | ||
1312 | $(TYPE_NLM): $(TYPE_SRC_OBJ) | |
1313 | @echo======= Linking $@ ======= | |
1314 | !ifdef USE_XDC | |
1315 | $(MPKTOOL) $(XDCFLAGS) $*.xdc | |
1316 | !endif | |
1317 | !ifdef WATCOM | |
1318 | @$(NLM_LINK) @<<$*.link | |
1319 | Form Novell NLM 'DOS type emulation for Perl Testing' Name $@ | |
1320 | Option Quiet Option Version = $(NLM_VERSION) Option Copyright '$(COPYRIGHT)' Option Caseexact Option Map=$*.map, Verbose, screenname 'System Console' Option Stack=1000 Option SYMFILE=$*.sym | |
1321 | !ifdef USE_XDC | |
1322 | OPTION XDCDATA=$*.xdc | |
1323 | !endif | |
1324 | Option NoDefaultLibs | |
1325 | $(EXTRA_LINK_OPTION) | |
1326 | !if "$(MAKE_TYPE)"=="Debug" | |
1327 | Debug novell | |
1328 | Debug codeview | |
1329 | !endif | |
1330 | LibPath $(LIBPATH) | |
1331 | $(BASE_LIBRARIES) Module clib $(BASE_IMPORT_FNS) $(BASE_IMPORT_FILES) $(ADD_IMPORT_FNS) | |
1332 | Import @perl.imp | |
1333 | $(EXPORTS) | |
1334 | File $(TYPE_SRC_OBJ:.obj=.obj,) .\$(BLDDIR)\clibstuf.obj | |
1335 | <<KEEP | |
1336 | !else | |
1337 | !ifdef CODEWARRIOR | |
1338 | # Linker definitions and lining come here for CODEWARRIOR | |
1339 | !endif | |
1340 | !endif | |
1341 | @echo======= Linking Complete ======= | |
1342 | ||
1343 | # Build NetWare specific extensions | |
1344 | $(CGI2PERL_NLP): | |
1345 | !if "$(NW_EXTNS)"=="yes" | |
1346 | cd $(*B) | |
1347 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1348 | $(MAKE) | |
1349 | cd ..\..\netware | |
1350 | !endif | |
1351 | ||
1352 | $(PERL2UCS_NLP): | |
1353 | !if "$(NW_EXTNS)"=="yes" | |
1354 | cd $(EXTDIR)\$(*B) | |
1355 | ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl | |
1356 | $(MAKE) | |
1357 | cd ..\..\netware | |
1358 | !endif | |
1359 | ||
1360 | nwclean: | |
1361 | -rmdir /s /q $(REL_DIR) || rmdir /s $(REL_DIR) | |
1362 | -rmdir /s /q $(DEB_DIR) || rmdir /s $(DEB_DIR) | |
1363 | @if exist .\stdio.h del .\stdio.h | |
1364 | @if exist .\string.h del .\string.h | |
1365 | @if exist .\Main.obj del .\Main.obj | |
1366 | @if exist .\Main.lib del .\Main.lib | |
1367 | cd testnlm\echo | |
1368 | -del *.obj *.map *.link *.options *.nlm *.sym *.xdc *.err | |
1369 | cd ..\type | |
1370 | -del *.obj *.map *.link *.options *.nlm *.sym *.xdc *.err | |
1371 | cd ..\..\ | |
1372 | ||
1373 | utils: $(BLDDIR)\$(NLM_NAME8).$(NLM_EXT) $(X2P) | |
1374 | cd ..\utils | |
1375 | $(MAKE) PERL=$(MINIPERL) | |
1376 | cd ..\pod | |
1377 | copy ..\README.amiga .\perlamiga.pod | |
1378 | copy ..\README.cygwin .\perlcygwin.pod | |
1379 | copy ..\README.dos .\perldos.pod | |
1380 | copy ..\README.hpux .\perlhpux.pod | |
1381 | # copy ..\README.machten .\perlmachten.pod | |
1382 | copy ..\README.os2 .\perlos2.pod | |
1383 | copy ..\vms\perlvms.pod .\perlvms.pod | |
1384 | copy ..\README.win32 .\perlwin32.pod | |
1385 | copy ..\README.netware .\perlnw5.pod | |
1386 | $(MAKE) -f ..\win32\pod.mak converters | |
1387 | cd ..\netware | |
1388 | $(MINIPERL) $(PL2BAT) $(UTILS) | |
1389 | ||
1390 | distclean: clean nwclean | |
1391 | -del /f $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) | |
1392 | -del /f *.def *.map | |
1393 | -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm | |
1394 | -del /f $(EXTDIR)\DynaLoader\dl_netware.xs | |
1395 | -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm | |
1396 | -del /f $(LIBDIR)\XSLoader.pm | |
1397 | -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm | |
1398 | -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm | |
1399 | -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm | |
1400 | -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm | |
1401 | -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm | |
1402 | -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm | |
1403 | -del /f $(LIBDIR)\File\Glob.pm | |
1404 | -rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO | |
1405 | -rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread | |
1406 | -rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B | |
1407 | -rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data | |
1408 | -del /f $(PODDIR)\*.html | |
1409 | -del /f $(PODDIR)\*.bat | |
1410 | cd ..\utils | |
1411 | -del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc dprofpp | |
1412 | -del /f *.bat | |
1413 | cd ..\netware | |
1414 | cd ..\x2p | |
1415 | -del /f find2perl s2p | |
1416 | -del /f *.bat | |
1417 | -del *.obj *.map *.link *.xdc *.err | |
1418 | cd ..\netware | |
1419 | -del /f ..\config.sh ..\splittree.pl dlutils.c config.h.new | |
1420 | -del /f $(CONFIGPM) | |
1421 | -del /f bin\*.bat | |
1422 | cd $(EXTDIR) | |
1423 | -del /s *.lib *.def *.map *.pdb *.bs Makefile *$(o) pm_to_blib *.xdc *.err | |
1424 | cd ..\netware | |
1425 | !if "$(NW_EXTNS)"=="yes" | |
1426 | cd cgi2perl | |
1427 | -del *.obj *.bs Makefile *$(o) *.c pm_to_blib *.xdc *.err | |
1428 | cd .. | |
1429 | !endif | |
1430 | -rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR) | |
1431 | -rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR) | |
1432 | -del ..\config.sh | |
1433 | ||
1434 | installwin: | |
1435 | $(MINIPERL) -I..\lib ..\installperl | |
1436 | ||
1437 | install : utils installwin | |
1438 | ||
1439 | installnw: | |
1440 | $(MINIPERL) -I..\lib ..\installperl -netware | |
1441 | ||
1442 | nwinstall: utils installnw | |
1443 | ||
1444 | inst_lib : $(CONFIGPM) | |
1445 | copy ..\win32\splittree.pl .. | |
1446 | $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR) | |
1447 | $(RCOPY) ..\lib $(INST_LIB)\*.* | |
1448 | ||
1449 | clean : | |
1450 | -@erase miniperlmain$(o) | |
1451 | -@erase /f config.h | |
1452 | -@erase $(DLL_OBJ) | |
1453 | -@erase ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res | |
1454 | -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat | |
1455 | -@erase ..\x2p\*.nlm ..\x2p\*.bat | |
1456 |