diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-17 16:53:29 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-17 16:53:29 +0000 |
commit | 406c51eefa6c9c4f403ef7f86adb46a627701935 (patch) | |
tree | 672f7be0c63248383e260deb3120fdd64cafb1cd /utils/Makefile | |
parent | b2f04286ef15827d0776b081ebcb4c3b2e0c0a52 (diff) | |
download | perl-406c51eefa6c9c4f403ef7f86adb46a627701935.tar.gz |
Initial integration of libnet-1.0703.
The Configure script renamed as libnetcfg, will be
installed along other utilities.
p4raw-id: //depot/perl@10663
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/utils/Makefile b/utils/Makefile index ec26cd8fdc..801b4a4244 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -5,9 +5,9 @@ REALPERL = ../perl # Files to be built with variable substitution after miniperl is # available. Dependencies handled manually below (for now). -pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL perlcc.PL dprofpp.PL -plextract = c2ph h2ph h2xs perlbug perldoc pl2pm splain perlcc dprofpp -plextractexe = ./c2ph ./h2ph ./h2xs ./perlbug ./perldoc ./pl2pm ./splain ./perlcc ./dprofpp +pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL perlcc.PL dprofpp.PL libnetcfg.PL +plextract = c2ph h2ph h2xs perlbug perldoc pl2pm splain perlcc dprofpp libnetcfg +plextractexe = ./c2ph ./h2ph ./h2xs ./perlbug ./perldoc ./pl2pm ./splain ./perlcc ./dprofpp ./libnetcfg all: $(plextract) @@ -21,6 +21,7 @@ compile: all $(plextract) $(REALPERL) -I../lib perlcc splain -o splain.exe -v 10 -log ../compilelog; $(REALPERL) -I../lib perlcc perlcc -o perlcc.exe -v 10 -log ../compilelog; $(REALPERL) -I../lib perlcc dprofpp -o dprofpp.exe -v 10 -log ../compilelog; + $(REALPERL) -I../lib perlcc libnetcfg -o libnetcfg.exe -v 10 -log ../compilelog; $(plextract): $(PERL) -I../lib $@.PL @@ -43,6 +44,8 @@ perlcc: perlcc.PL ../config.sh dprofpp: dprofpp.PL ../config.sh +libnetcfg: libnetcfg.PL ../config.sh + clean: realclean: |