blob: 36e743f77458c751e11f6156963b17d5a55a8f5d (
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
26
27
28
29
|
# file : build/import/cli/stub.make
# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
# license : MIT; see accompanying LICENSE file
$(call include-once,$(scf_root)/import/cli/configuration-rules.make,$(dcf_root))
cli_installed :=
$(call -include,$(dcf_root)/import/cli/configuration-dynamic.make)
ifdef cli_installed
ifeq ($(cli_installed),y)
$(call export,cli: cli,cli-rules: $(scf_root)/import/cli/cli-cxx.make)
else
# Include export stub.
#
$(call include,$(scf_root)/export/cli/stub.make)
endif
else
.NOTPARALLEL:
endif
|