blob: c41085375afaf06c31aa40dfca914dccc6c106f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# file : build/clean.make
# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
#@@ Maybe create file aliases.make for standard aliases
# plus check for interactivity? What if some targets
# are not defined?
#
ifdef %interactive%
.PHONY: clean
clean: $(out_base)/.clean
endif
|