New file to build the utilities.
Perl 5 Porters [Wed, 3 Jan 1996 01:06:18 +0000 (01:06 +0000)]
utils/Makefile [new file with mode: 0644]

diff --git a/utils/Makefile b/utils/Makefile
new file mode 100644 (file)
index 0000000..33947c8
--- /dev/null
@@ -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