summaryrefslogtreecommitdiff
path: root/Makefile.SH
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters.nicoh.com>1996-01-03 01:28:30 +0000
committerAndy Dougherty <doughera.lafayette.edu>1996-01-03 01:28:30 +0000
commit909b3858a4779b142bf2bf51d648f8d2724db345 (patch)
tree35c7060cd5a8b52fa4a7955f4fce2caf7088b471 /Makefile.SH
parenta49c8269b50eaaaad62a4385208e6b5972e3575f (diff)
downloadperl-909b3858a4779b142bf2bf51d648f8d2724db345.tar.gz
Now builds .PL utilities in the utils/ subdirectory.
Diffstat (limited to 'Makefile.SH')
-rw-r--r--Makefile.SH23
1 files changed, 15 insertions, 8 deletions
diff --git a/Makefile.SH b/Makefile.SH
index 4cdfc67001..e36cf10746 100644
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -120,7 +120,7 @@ DYNALOADER = lib/auto/DynaLoader/DynaLoader.a
libs = $libs $cryptlib
-public = perl $suidperl
+public = perl $suidperl utilities translators
shellflags = $shellflags
@@ -160,11 +160,9 @@ shextract = Makefile cflags config.h makeaperl makedepend \
# Files to be built with variable substitution after miniperl is
# available. Dependencies handled manually below (for now).
-pl = c2ph.PL h2ph.PL h2xs.PL perldoc.PL \
- pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL
+pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL
-plextract = c2ph h2ph h2xs perldoc \
- pod/pod2html pod/pod2latex pod/pod2man
+plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text
addedbyconf = UU $(shextract) $(plextract) pstruct
@@ -207,8 +205,15 @@ SHELL = /bin/sh
$(CCCMD) $(PLDLFLAGS) $*.c
all: makefile miniperl $(private) $(plextract) $(public) $(dynamic_ext)
+ @echo " "; echo " Everything is up to date."
+
+translators: miniperl lib/Config.pm FORCE
@echo " "; echo " Making x2p stuff"; cd x2p; $(MAKE) all
+utilities: miniperl lib/Config.pm FORCE
+ @echo " "; echo " Making utilities"; cd utils; $(MAKE) all
+
+
# This is now done by installman only if you actually want the man pages.
# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
@@ -373,17 +378,19 @@ s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
clean:
rm -f *.o *.a all perlmain.c
rm -f perl.exp ext.libs
- -cd x2p; $(MAKE) clean
-cd pod; $(MAKE) clean
+ -cd utils; $(MAKE) clean
+ -cd x2p; $(MAKE) clean
-@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
sh ext/util/make_ext clean $$x ; \
done
rm -f perl suidperl miniperl $(perllib)
realclean: clean
- -cd x2p; $(MAKE) realclean
- -cd pod; $(MAKE) realclean
-cd os2; rm -f Makefile
+ -cd pod; $(MAKE) realclean
+ -cd utils; $(MAKE) realclean
+ -cd x2p; $(MAKE) realclean
-@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
sh ext/util/make_ext realclean $$x ; \
done