From: Jarkko Hietaniemi Date: Mon, 18 Jun 2001 12:20:50 +0000 (+0000) Subject: Add the locale.c and numeric.c to the microperl sources. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=53a624378bd76eb394925af6efec927264146177;p=p5sagit%2Fp5-mst-13.2.git Add the locale.c and numeric.c to the microperl sources. p4raw-id: //depot/perl@10682 --- diff --git a/Makefile.micro b/Makefile.micro index 304db0b..118648c 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 3418338..0df7e29 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 \