[llvm-commits] CVS: llvm/Makefile.common
Misha Brukman
brukman at cs.uiuc.edu
Wed Dec 4 11:09:00 PST 2002
Changes in directory llvm:
Makefile.common updated: 1.68 -> 1.69
---
Log message:
On `make clean', kill the core files produced, which are of the form:
core.### where ### is the process ID. We use core.[0-9][0-9]* to avoid killing
core.c, core.cpp, and core.h files which may be part of benchmarks.
---
Diffs of the changes:
Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.68 llvm/Makefile.common:1.69
--- llvm/Makefile.common:1.68 Mon Nov 4 14:50:33 2002
+++ llvm/Makefile.common Wed Dec 4 11:08:15 2002
@@ -470,7 +470,7 @@
# 'make clean' nukes the tree
clean::
$(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Profile $(BUILD_ROOT)/Depend
- $(VERB) rm -f core *.o *.d *.so *~ *.flc
+ $(VERB) rm -f core core.[0-9][0-9]* *.o *.d *.so *~ *.flc
# If dependancies were generated for the file that included this file,
# include the dependancies now...
More information about the llvm-commits
mailing list