diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-08-21 17:37:41 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-08-25 11:34:37 +0200 |
commit | d500e60df9f652d9d80c9a5f4324d49e51e7f990 (patch) | |
tree | 07bc201e042e7f0373bfad81ae7df2dfba874921 /win32/Makefile | |
parent | cdde42af3c16a29c0c7fcb1b2b71c5a4b0093ac4 (diff) | |
download | perl-d500e60df9f652d9d80c9a5f4324d49e51e7f990.tar.gz |
Eliminate global.sym, as makedef.pl can generate it internally.
global.sym was a file listing the exported symbols, generated by regen/embed.pl
from embed.fnc and regen/opcodes, which was only used by makedef.pl
Move the code that generates global.sym from regen/embed.pl to makedef.pl,
and thereby eliminate the need to ship a 907 line generated file.
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile index c14934111f..8f7905f14f 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -900,7 +900,7 @@ $(CORE_OBJ) : $(CORE_H) $(DLL_OBJ) : $(CORE_H) $(X2P_OBJ) : $(CORE_H) -perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\makedef.pl create_perllibst_h.pl +perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl $(MINIPERL) -I..\lib create_perllibst_h.pl $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \ CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def |