diff options
Diffstat (limited to 'inheritance/polymorphism/makefile')
-rw-r--r-- | inheritance/polymorphism/makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/inheritance/polymorphism/makefile b/inheritance/polymorphism/makefile index 88456ae..51bc5c4 100644 --- a/inheritance/polymorphism/makefile +++ b/inheritance/polymorphism/makefile @@ -45,11 +45,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 inh_poly_ +$(gen) $(dist): export odb_options += --generate-schema --generate-query \ +--table-prefix inh_poly_ $(gen): cpp_options := -I$(src_base) $(gen): $(odb.l.cpp-options) +$(gen): odb_options += --database $(db_id) + $(call include-dep,$(cxx_od),$(cxx_obj),$(gen)) # Alias for default target. @@ -60,7 +62,6 @@ $(out_base)/: $(driver) # name := $(subst /,-,$(subst $(src_root)/,,$(src_base))) -$(dist): db_id := @database@ $(dist): sources := $(cxx_tun) $(dist): headers := $(odb_hdr) $(dist): export name := $(name) |