commit 4500d4b0a21fde906527db6ae4140830508f466f
parent 76ee7f3ae9e6d39f059365283d68bc369c6069e2
Author: Jordan Ritter <jpr5@darkridge.com>
Date: Tue, 26 Jun 2001 17:32:13 +0000
removed first distclean double-colon rule and moved associated rm
command to second rule. the first double-colon rule would for some
reason sometimes result in the config.status getting nuked before the
second distclean target was called, other times it would work just
fine. perhaps a bug (race?) in gnu make? oh well.
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/regex-0.12/Makefile.in b/regex-0.12/Makefile.in
@@ -54,8 +54,9 @@ regex.o: regex.c regex.h
clean mostlyclean::
rm -f *.o
-distclean:: clean
- rm -f Makefile config.status
+# (6/26/01) jpr5: moved this to end of other distclean target below
+#distclean:: clean
+# rm -f Makefile config.status
extraclean:: distclean
rm -f patch* *~* *\#* *.orig *.rej *.bak core a.out
@@ -76,8 +77,11 @@ default all install \
mostlyclean clean distclean extraclean realclean \
TAGS check::
for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done
+ rm -f Makefile config.status
+
.PHONY: install mostlyclean clean distclean extraclean realclean TAGS check
+
# Prevent GNU make 3 from overflowing arg limit on system V.
.NOEXPORT: