diff options
author | Perl 5 Porters <perl5-porters.nicoh.com> | 1996-01-03 01:06:18 +0000 |
---|---|---|
committer | Andy Dougherty <doughera.lafayette.edu> | 1996-01-03 01:06:18 +0000 |
commit | 1756d26f4a53e820ec510208c68566fa347f23cc (patch) | |
tree | 8191e6d7c24f3864c450bb5d89b8beb587b6ca96 /utils/Makefile | |
parent | 7026dc70243320975ceb9bbf2c2db41254921be6 (diff) | |
download | perl-1756d26f4a53e820ec510208c68566fa347f23cc.tar.gz |
New file to build the utilities.
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/Makefile b/utils/Makefile new file mode 100644 index 0000000000..33947c87f1 --- /dev/null +++ b/utils/Makefile @@ -0,0 +1,24 @@ + +PERL = ../miniperl + +# 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 + +pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL +plextract = c2ph h2ph h2xs perlbug perldoc pl2pm + +all: $(plextract) + +$(plextract): + $(PERL) -I../lib $@.PL + +clean: + +realclean: + rm -rf $(plextract) pstruct + +clobber: realclean + +distclean: clobber |