blob: ee464cd55a3ea15a4510e3e8168219d2b4b4b57d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# file : build/configuration-rules.make
# license : GNU GPL v2; see accompanying LICENSE file
$(dcf_root)/configuration-dynamic.make: | $(dcf_root)/.
$(call message,,$(scf_root)/configure $@)
ifndef %foreign%
disfigure::
$(call message,rm $$1,rm -f $$1,$(dcf_root)/configuration-dynamic.make)
$(call message,rm $$1,rm -f $$1,$(dcf_root)/*.options)
$(call message,rm $$1,rm -f $$1,$(dcf_root)/*-driver)
endif
ifeq ($(.DEFAULT_GOAL),$(dcf_root)/configuration-dynamic.make)
.DEFAULT_GOAL :=
endif
|