blob: 0cea6321fb8a098c3e6422f1b005507e2ee57d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# file : build/clean.make
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2004-2010 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
|