blob: 3d739b9e8aeb0e3d4c2c556c89bd2b7d6d9998e9 (
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
30
31
|
# file : build/configuration.make
# copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
$(call include-once,$(scf_root)/configuration-rules.make,$(dcf_root))
# Dynamic configuration.
#
xsd_with_zlib :=
xsd_with_ace :=
xsd_with_xdr :=
xsd_with_xqilla :=
xsd_with_boost_date_time :=
xsd_with_boost_serialization :=
$(call -include,$(dcf_root)/configuration-dynamic.make)
ifdef xsd_with_zlib
$(out_root)/%: xsd_with_zlib := $(xsd_with_zlib)
$(out_root)/%: xsd_with_ace := $(xsd_with_ace)
$(out_root)/%: xsd_with_xdr := $(xsd_with_xdr)
$(out_root)/%: xsd_with_xqilla := $(xsd_with_xqilla)
$(out_root)/%: xsd_with_boost_date_time := $(xsd_with_boost_date_time)
$(out_root)/%: xsd_with_boost_serialization := $(xsd_with_boost_serialization)
else
.NOTPARALLEL:
endif
|