diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-10-28 21:09:31 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-10-28 21:09:31 +0000 |
commit | 7ee2227d70915603ee41631de2babf3bbc5737c4 (patch) | |
tree | 46651047245714447d9c72e4ccfc8173989f81c9 /Makefile.micro | |
parent | 6ea79e1700a40a6dac73786dfa0a911a945bcffb (diff) | |
download | perl-7ee2227d70915603ee41631de2babf3bbc5737c4.tar.gz |
Add a new file, mathoms.c, to hold old code kept around for binary
compatability with previous versions of Perl. Change also includes
various Makefile changes to compile the new file and link it into
libperl.
p4raw-id: //depot/perl@25866
Diffstat (limited to 'Makefile.micro')
-rw-r--r-- | Makefile.micro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.micro b/Makefile.micro index 735215ba28..d3b273c5ea 100644 --- a/Makefile.micro +++ b/Makefile.micro @@ -15,7 +15,7 @@ O = uav$(_O) udeb$(_O) udoio$(_O) udoop$(_O) udump$(_O) \ upp_ctl$(_O) upp_hot$(_O) upp_sys$(_O) upp_pack$(_O) upp_sort$(_O) \ uregcomp$(_O) uregexec$(_O) urun$(_O) \ uscope$(_O) usv$(_O) utaint$(_O) utoke$(_O) \ - unumeric$(_O) ulocale$(_O) \ + unumeric$(_O) ulocale$(_O) umathoms$(_O) \ uuniversal$(_O) uutf8$(_O) uutil$(_O) uperlapi$(_O) uxsutils$(_O) microperl: $(O) @@ -142,6 +142,9 @@ ulocale$(_O): $(HE) locale.c unumeric$(_O): $(HE) numeric.c $(CC) -c -o $@ $(CFLAGS) numeric.c +umathoms$(_O): $(HE) mathoms.c + $(CC) -c -o $@ $(CFLAGS) mathoms.c + uuniversal$(_O): $(HE) universal.c XSUB.h $(CC) -c -o $@ $(CFLAGS) universal.c |