summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-08-22 17:50:57 +0000
committerPaul Smith <psmith@gnu.org>1999-08-22 17:50:57 +0000
commit29339a368b708d59a9485ab6295a2b72f05a156f (patch)
treee968d88c7860b87a674111d68a932c1ff119a9ff /maintMakefile
parent6a7de719e72a8e2df74a6f82591ab07e3c74a570 (diff)
downloadmake-29339a368b708d59a9485ab6295a2b72f05a156f.tar.gz
* Various changes.
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/maintMakefile b/maintMakefile
index c9537178..108381bc 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -18,7 +18,7 @@ MTEMPLATES = Makefile.DOS SMakefile
# General rule for turning a .template into a regular file.
#
-$(TEMPLATES) : % : %.template configure.in
+$(TEMPLATES) : % : %.template Makefile
rm -f $@
sed -e 's@%VERSION%@$(VERSION)@g' \
-e 's@%PACKAGE%@$(PACKAGE)@g' \
@@ -27,7 +27,7 @@ $(TEMPLATES) : % : %.template configure.in
# Construct Makefiles by adding on dependencies, etc.
#
-$(MTEMPLATES) : % : %.template .dep_segment Makefile.am maintMakefile
+$(MTEMPLATES) : % : %.template .dep_segment Makefile
rm -f $@
sed -e 's@%VERSION%@$(VERSION)@g' \
-e 's@%PROGRAMS%@$(bin_PROGRAMS)@g' \
@@ -40,7 +40,7 @@ $(MTEMPLATES) : % : %.template .dep_segment Makefile.am maintMakefile
cat $(word 2,$^) >>$@
chmod a-w $@
-NMakefile: NMakefile.template .dep_segment Makefile.am maintMakefile
+NMakefile: NMakefile.template .dep_segment Makefile
rm -f $@
cp $< $@
echo >>$@; echo '# --------------- DEPENDENCIES' >>$@; echo '#' >>$@; \
@@ -49,7 +49,7 @@ NMakefile: NMakefile.template .dep_segment Makefile.am maintMakefile
# Construct build.sh.in
#
-build.sh.in: build.template Makefile.am maintMakefile
+build.sh.in: build.template Makefile
rm -f $@
sed -e 's@%objs%@$(filter-out remote-%, $(make_OBJECTS)@g' \
-e 's@%globobjs%@$(patsubst %.c,%.o,$(globsrc)))@g' \