summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--support/make/default.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/support/make/default.mk b/support/make/default.mk
index 636f1ed9c5..b3bac12271 100644
--- a/support/make/default.mk
+++ b/support/make/default.mk
@@ -7,11 +7,14 @@
# Commands
all : default
+force : default.force
clean : default.clean
distclean : default.distclean
default :
+default.force :
+
default.clean :
$(RM) core *~
@@ -19,9 +22,11 @@ default.distclean : default.clean
.PHONY : all
+.PHONY : force
.PHONY : clean
.PHONY : distclean
.PHONY : default
+.PHONY : default.force
.PHONY : default.clean
.PHONY : default.distclean