summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-07-20 17:03:12 +0000
committerpaltherr <paltherr@epfl.ch>2004-07-20 17:03:12 +0000
commitfbed2284e15cae07889e2319cfb391bba9207448 (patch)
treeefb6b6bf02a22abed659d615cd1b4d526fe6e61b /support
parent8991585adcacdfef75dc20ea267b6d8be6dc9df4 (diff)
downloadscala-fbed2284e15cae07889e2319cfb391bba9207448.tar.gz
scala-fbed2284e15cae07889e2319cfb391bba9207448.tar.bz2
scala-fbed2284e15cae07889e2319cfb391bba9207448.zip
- Declared fastclean in default.mk
- Moved removal from ~ and core files to default.distclean
Diffstat (limited to 'support')
-rw-r--r--support/make/default.mk12
1 files changed, 8 insertions, 4 deletions
diff --git a/support/make/default.mk b/support/make/default.mk
index e8a11d1546..a707958d09 100644
--- a/support/make/default.mk
+++ b/support/make/default.mk
@@ -8,25 +8,29 @@
all : default
force : default.force
+fastclean : default.fastclean
clean : default.clean
distclean : default.distclean
default :
-default.force :
+default.force : fastclean
-default.clean :
- $(RM) core *~
+default.fastclean :
-default.distclean : clean
+default.clean : fastclean
+default.distclean : clean
+ $(FIND) '(' -name '*~' -o -name core ')' -exec $(RM) '{}' ';'
.PHONY : all
.PHONY : force
+.PHONY : fastclean
.PHONY : clean
.PHONY : distclean
.PHONY : default
.PHONY : default.force
+.PHONY : default.fastclean
.PHONY : default.clean
.PHONY : default.distclean