summaryrefslogtreecommitdiff
path: root/support/make/default.mk
blob: b3bac1227151d68a28c4f99a98b56128f5443670 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
############################################################-*-Makefile-*-####
# DEFAULT - Default Rules
##############################################################################
# $Id$

##############################################################################
# Commands

all			: default
force			: default.force
clean			: default.clean
distclean		: default.distclean

default			:

default.force		:

default.clean		:
	$(RM) core *~

default.distclean	: default.clean


.PHONY			: all
.PHONY			: force
.PHONY			: clean
.PHONY			: distclean
.PHONY			: default
.PHONY			: default.force
.PHONY			: default.clean
.PHONY			: default.distclean

##############################################################################