summaryrefslogtreecommitdiff
path: root/support/make/default.mk
diff options
context:
space:
mode:
Diffstat (limited to 'support/make/default.mk')
-rw-r--r--support/make/default.mk43
1 files changed, 0 insertions, 43 deletions
diff --git a/support/make/default.mk b/support/make/default.mk
deleted file mode 100644
index dcc8bc7bfa..0000000000
--- a/support/make/default.mk
+++ /dev/null
@@ -1,43 +0,0 @@
-############################################################-*-Makefile-*-####
-# DEFAULT - Default Rules
-##############################################################################
-# $Id$
-
-##############################################################################
-# Defaults
-
-FIND ?= find
-RM ?= rm
-
-##############################################################################
-# Commands
-
-all : default
-force : default.force
-fastclean : default.fastclean
-clean : default.clean
-distclean : default.distclean
-
-default :
-
-default.force : fastclean
-
-default.fastclean :
-
-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
-
-##############################################################################