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