diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-01-18 04:40:27 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-01-18 04:40:27 (GMT) |
commit | 6f477a6c075311dff67d873792f9844bab09a38e (patch) | |
tree | 5a6e4e8b80db5560fe74aa4c8e78f7b0594583be /Makefile.in | |
parent | 691e0e95de064f04675018ecbf0b74f709253271 (diff) | |
download | cpython-6f477a6c075311dff67d873792f9844bab09a38e.zip cpython-6f477a6c075311dff67d873792f9844bab09a38e.tar.gz cpython-6f477a6c075311dff67d873792f9844bab09a38e.tar.bz2 |
Remove build/ subdirectory in "clean" target, not "clobber"
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 79e28d7..0d6b4fe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -505,6 +505,7 @@ depend: localclean: -rm -f core *~ [@,#]* *.old *.orig *.rej + -rm -rf build clean: localclean -for i in $(SUBDIRS); do \ @@ -520,7 +521,6 @@ clean: localclean localclobber: localclean -rm -f tags TAGS python$(EXE) $(LIBRARY) $(LDLIBRARY) *.o -rm -f config.log config.cache config.h - -rm -rf build clobber: localclobber -for i in $(SUBDIRS); do \ |