diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-18 12:20:50 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-18 12:20:50 +0000 |
commit | 53a624378bd76eb394925af6efec927264146177 (patch) | |
tree | 5443a9f3f69496e64896baa1be4333900711e391 | |
parent | addd17944a903a06ff703e464df3c19e25641a1a (diff) | |
download | perl-53a624378bd76eb394925af6efec927264146177.tar.gz |
Add the locale.c and numeric.c to the microperl sources.
p4raw-id: //depot/perl@10682
-rw-r--r-- | Makefile.micro | 9 | ||||
-rw-r--r-- | win32/Makefile | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.micro b/Makefile.micro index 304db0b972..118648c94c 100644 --- a/Makefile.micro +++ b/Makefile.micro @@ -15,7 +15,8 @@ O = uav$(_O) udeb$(_O) udoio$(_O) udoop$(_O) udump$(_O) \ upp_ctl$(_O) upp_hot$(_O) upp_sys$(_O) \ uregcomp$(_O) uregexec$(_O) urun$(_O) \ uscope$(_O) usv$(_O) utaint$(_O) utoke$(_O) \ - uuniversal$(_O) uutf8$(_O) uutil$(_O) uperlapi$(_O) + unumeric$(_O) ulocale$(_O) \ + uuniversal$(_O) uutf8$(_O) uutil$(_O) uperlapi$(_O) \ microperl: $(O) $(LD) -o $@ $(O) $(LIBS) @@ -112,6 +113,12 @@ utaint$(_O): $(HE) taint.c utoke$(_O): $(HE) toke.c keywords.h $(CC) -c -o $@ $(CFLAGS) toke.c +ulocale$(_O): $(HE) locale.c + $(CC) -c -o $@ $(CFLAGS) locale.c + +unumeric$(_O): $(HE) numeric.c + $(CC) -c -o $@ $(CFLAGS) numeric.c + uuniversal$(_O): $(HE) universal.c objXSUB.h XSUB.h $(CC) -c -o $@ $(CFLAGS) universal.c diff --git a/win32/Makefile b/win32/Makefile index 3418338906..0df7e295c4 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -501,7 +501,9 @@ MICROCORE_SRC = \ ..\globals.c \
..\gv.c \
..\hv.c \
+ ..\locale.c \
..\mg.c \
+ ..\numeric.c \
..\op.c \
..\perl.c \
..\perlapi.c \
|