diff options
author | nop <nop> | 1997-03-03 06:36:23 +0000 |
---|---|---|
committer | nop <nop> | 1997-03-03 06:36:23 +0000 |
commit | fe8e7c7043219ad189a56caf15553f2c9df321e3 (patch) | |
tree | 9a02a712d6810b62eb85855e031766861b01ad2b /Makefile.in | |
parent | e594889946d571bd0bfe0834f154f0e075d85bf3 (diff) | |
download | moo-fe8e7c7043219ad189a56caf15553f2c9df321e3.tar.gz moo-fe8e7c7043219ad189a56caf15553f2c9df321e3.tar.xz moo-fe8e7c7043219ad189a56caf15553f2c9df321e3.zip |
clean target doesn't force reconfiguration; distclean now does.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 0b5bb66..b693a29 100644 --- a/Makefile.in +++ b/Makefile.in @@ -132,8 +132,10 @@ tags: etags -t $(SRCS) clean: - rm -f $(OBJS) core y.tab.c y.tab.h y.output makedep eddep config.h \ - Makefile config.status + rm -f $(OBJS) core y.tab.c y.tab.h y.output makedep eddep + +distclean: clean + rm -f config.h Makefile config.status depend: ${ALL_CSRCS} rm -f eddep makedep @@ -147,6 +149,9 @@ depend: ${ALL_CSRCS} ############################################################################### # $Log$ +# Revision 1.4 1997/03/03 06:36:23 nop +# clean target doesn't force reconfiguration; distclean now does. +# # Revision 1.3 1997/03/03 05:55:14 nop # Changed to ed for make depend, since ex is a cheap plastic imitation of ed # on many Linux systems. Added better optimization suggestion. |