blob: b1aa605c56b449f5fcaae09317348632ade98a95 (
plain)
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
|
# file : build/system/configuration-rules.make
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2004-2010 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
$(dcf_root)/system/configuration-dynamic.make: | $(dcf_root)/system/.
$(call message,,$(bld_root)/system/configure $@)
ifeq ($(.DEFAULT_GOAL),$(dcf_root)/system/configuration-dynamic.make)
.DEFAULT_GOAL :=
endif
ifndef %foreign%
disfigure::
$(call message,rm $(dcf_root)/system/configuration-dynamic.make,\
rm -f $(dcf_root)/system/configuration-dynamic.make)
ifeq ($(.DEFAULT_GOAL),disfigure)
.DEFAULT_GOAL :=
endif
endif
|