aboutsummaryrefslogtreecommitdiff
path: root/common/schema
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-06-13 21:57:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-06-13 21:57:07 +0200
commit236cd9bb1dd022e64d690c9b0080d1a15c5f61c7 (patch)
tree2bcb891a85a64b2a4dfb7be457ea0bbbf519ccb9 /common/schema
parent2b03a8fa879bd583c889b101f567927a959cdc0f (diff)
Handle --database option directly in automake and VC++ projects
Diffstat (limited to 'common/schema')
-rw-r--r--common/schema/embedded/basics/makefile5
-rw-r--r--common/schema/embedded/order/makefile5
-rw-r--r--common/schema/namespace/makefile7
3 files changed, 10 insertions, 7 deletions
diff --git a/common/schema/embedded/basics/makefile b/common/schema/embedded/basics/makefile
index 7989195..96e987a 100644
--- a/common/schema/embedded/basics/makefile
+++ b/common/schema/embedded/basics/makefile
@@ -34,11 +34,13 @@ gen := $(addprefix $(out_base)/,$(genf))
$(gen): $(odb)
$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database $(db_id) --generate-schema \
+$(gen) $(dist): export odb_options += --generate-schema \
--schema-format embedded --schema-name test --table-prefix schema_embd_bscs_
$(gen): cpp_options := -I$(src_base)
$(gen): $(common.l.cpp-options)
+$(gen): odb_options += --database $(db_id)
+
$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
# Alias for default target.
@@ -49,7 +51,6 @@ $(out_base)/: $(driver)
#
name := $(subst /,-,$(subst $(src_root)/common/,,$(src_base)))
-$(dist): db_id := @database@
$(dist): sources := $(cxx_tun)
$(dist): headers := $(odb_hdr)
$(dist): data_dist := test.std
diff --git a/common/schema/embedded/order/makefile b/common/schema/embedded/order/makefile
index e8d840d..e8897d5 100644
--- a/common/schema/embedded/order/makefile
+++ b/common/schema/embedded/order/makefile
@@ -34,7 +34,7 @@ gen := $(addprefix $(out_base)/,$(genf))
$(gen): $(odb)
$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database $(db_id) --generate-schema \
+$(gen) $(dist): export odb_options += --generate-schema \
--schema-format embedded --table-prefix schema_embd_ordr_
$(gen): cpp_options := -I$(src_base)
$(gen): $(common.l.cpp-options)
@@ -43,6 +43,8 @@ $(gen): $(common.l.cpp-options)
#
$(gen): $(addprefix $(src_base)/,$(odb_hdr))
+$(gen): odb_options += --database $(db_id)
+
$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
# Alias for default target.
@@ -53,7 +55,6 @@ $(out_base)/: $(driver)
#
name := $(subst /,-,$(subst $(src_root)/common/,,$(src_base)))
-$(dist): db_id := @database@
$(dist): sources := $(cxx_tun)
$(dist): headers := $(odb_hdr)
$(dist): data_dist := test.std
diff --git a/common/schema/namespace/makefile b/common/schema/namespace/makefile
index c1157c9..38f6be1 100644
--- a/common/schema/namespace/makefile
+++ b/common/schema/namespace/makefile
@@ -34,11 +34,13 @@ gen := $(addprefix $(out_base)/,$(genf))
$(gen): $(odb)
$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database $(db_id) --generate-schema \
---generate-query --table-prefix schema_ns_
+$(gen) $(dist): export odb_options += --generate-schema --generate-query \
+--table-prefix schema_ns_
$(gen): cpp_options := -I$(src_base)
$(gen): $(common.l.cpp-options)
+$(gen): odb_options += --database $(db_id)
+
$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
# Alias for default target.
@@ -49,7 +51,6 @@ $(out_base)/: $(driver)
#
name := $(subst /,-,$(subst $(src_root)/common/,,$(src_base)))
-$(dist): db_id := @database@
$(dist): sources := $(cxx_tun)
$(dist): headers := $(odb_hdr)
$(dist): data_dist := test.std