diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-07-16 21:51:11 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-07-24 10:30:17 +0200 |
commit | 080c37298617406e02876f5945650ccf10840f28 (patch) | |
tree | 200388466acde33fc3dd5a351b862dcb723e2ec3 /NetWare/Makefile | |
parent | 5097d0e7442cf91c815bc77f427ba824e9e79876 (diff) | |
download | perl-080c37298617406e02876f5945650ccf10840f28.tar.gz |
Add an option TARG_DIR to makedef.pl, giving the path to files to read & write.
Change the Makefiles for Win32, WinCE and NetWare to pass in TARG_DIR of ..\
Previously ..\ was hardcoded for PLATFORM=win32, wince or netware. Making it a
parameter allows portable testing of makedef.pl.
Diffstat (limited to 'NetWare/Makefile')
-rw-r--r-- | NetWare/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NetWare/Makefile b/NetWare/Makefile index 22d8e5fe55..4c14412d7e 100644 --- a/NetWare/Makefile +++ b/NetWare/Makefile @@ -1063,10 +1063,10 @@ $(PERLIMPLIB): perllib.imp perllib.imp : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\makedef.pl # $(MINIPERL) -w ..\makedef.pl PLATFORM=netware FILETYPE=def $(ADD_BUILDOPT) \ -# CCTYPE=$(CCTYPE) > perllib.def +# CCTYPE=$(CCTYPE) TARG_DIR=..\ > perllib.def @echo (Perl) > perl.imp $(MINIPERL) -w ..\makedef.pl PLATFORM=netware FILETYPE=imp $(BS_CFLAGS) $(DEFINES) $(ADD_BUILDOPT) \ - CCTYPE=$(CCTYPE) >> perl.imp + CCTYPE=$(CCTYPE) TARG_DIR=..\ >> perl.imp copy perl.imp $(COREDIR) $(DLL_OBJ) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c |