rse 98/02/18 00:50:59
Modified: src Makefile.tmpl
Log:
- also remove backup files (*.bak) on "clean" target
- remove the (for a long-time) obsolete "dist.tar" target
because we already use the step-by-step document for
building releases and this particular "dist.tar" target
is at least broken because of the changed subdir/files tree
Revision Changes Path
1.77 +1 -8 apache-1.3/src/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/Makefile.tmpl,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- Makefile.tmpl 1998/02/12 10:15:16 1.76
+++ Makefile.tmpl 1998/02/18 08:50:58 1.77
@@ -42,17 +42,10 @@
cd support; $(MAKE) CC='$(CC)' AUX_CFLAGS='$(CFLAGS)' RANLIB='$(RANLIB)'
clean:
- rm -f $(TARGET) *.o
+ rm -f $(TARGET) *.o *.bak
for i in $(SUBDIRS); do \
( cd $$i && $(MAKE) $@ ) || exit 1; \
done
-
-dist.tar:
- # Assure a semi-sensible configuration going out...
- cp Makefile.orig Makefile
- cp modules.c.orig modules.c
- tar cvf dist.tar README INSTALL CHANGES TODO API.html \
- Configuration Configure Makefile.tmpl Makefile *.h *.c
# We really don't expect end users to use this rule. It works only with
# gcc, and rebuilds Makefile.tmpl. You have to re-run Configure after