diff options
Diffstat (limited to 'common/composite')
-rw-r--r-- | common/composite/makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/composite/makefile b/common/composite/makefile index 1892ba1..a1fed9b 100644 --- a/common/composite/makefile +++ b/common/composite/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 t_comp_ +$(gen) $(dist): export odb_options += --generate-schema --generate-query \ +--table-prefix t_comp_ $(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 |