blob: 6861dc703664b63d915b02f033eb0cf34acb2d45 (
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
|
# file : build/import/libodb-oracle/stub.make
# license : ODB NCUEL; see accompanying LICENSE file
$(call include-once,$(scf_root)/import/libodb-oracle/configuration-rules.make,$(dcf_root))
libodb_oracle_installed :=
$(call -include,$(dcf_root)/import/libodb-oracle/configuration-dynamic.make)
ifdef libodb_oracle_installed
ifeq ($(libodb_oracle_installed),y)
$(call export,l: -lodb-oracle -lodb -lclntsh,cpp-options: )
else
# Include export stub.
#
$(call include,$(scf_root)/export/libodb-oracle/stub.make)
endif
else
.NOTPARALLEL:
endif
|