blob: b171c30f072c7d3a1aa9f62e3b94f18514e91d81 (
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
32
|
# file : build/import/libbackend-elements/stub.make
# author : Boris Kolpackov <boris@kolpackov.net>
# copyright : Copyright (c) 2005-2009 Boris Kolpackov
# license : GNU GPL v2; see accompanying LICENSE file
$(call include-once,$(scf_root)/import/libbackend-elements/configuration-rules.make,$(dcf_root))
libbackend_elements_installed :=
$(call -include,$(dcf_root)/import/libbackend-elements/configuration-dynamic.make)
ifdef libbackend_elements_installed
ifeq ($(libbackend_elements_installed),y)
#-lbackend-elements
$(call export,l: -lcult -lboost_regex,cpp_options: )
else
# Include export stub.
#
$(call include,$(scf_root)/export/libbackend-elements/stub.make)
endif
else
.NOTPARALLEL:
endif
|