diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-11-24 08:48:31 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-11-24 08:48:31 +0200 |
commit | 73d61594c500352bc9785e08d799ba67d94baa3c (patch) | |
tree | 12847e7d9f0e40213e7e5cbb8709a86b1f8e3057 /common | |
parent | 73bcedf1a812136d338da7f274a37b02d0b30b0a (diff) |
Keep track of extra headers for the dist target
Diffstat (limited to 'common')
-rw-r--r-- | common/inverse/makefile | 3 | ||||
-rw-r--r-- | common/relationship/makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/common/inverse/makefile b/common/inverse/makefile index 0636dec..e64cced 100644 --- a/common/inverse/makefile +++ b/common/inverse/makefile @@ -53,12 +53,13 @@ name := $(notdir $(src_base)) $(dist): db_id := @database@ $(dist): sources := $(cxx_tun) $(dist): headers := $(odb_hdr) +$(dist): export extra_headers := tr1-memory.hxx $(dist): data_dist := test.std $(dist): export name := $(name) $(dist): export extra_dist := $(data_dist) $(call vc9projs,$(name)) \ $(call vc10projs,$(name)) $(dist): - $(call dist-data,$(sources) $(headers) $(data_dist)) + $(call dist-data,$(sources) $(headers) $(extra_headers) $(data_dist)) $(call meta-automake,../template/Makefile.am) $(call meta-vc9projs,../template/template,$(name)) $(call meta-vc10projs,../template/template,$(name)) diff --git a/common/relationship/makefile b/common/relationship/makefile index 82f2f28..a1c0a21 100644 --- a/common/relationship/makefile +++ b/common/relationship/makefile @@ -52,12 +52,13 @@ name := $(notdir $(src_base)) $(dist): db_id := @database@ $(dist): sources := $(cxx_tun) $(dist): headers := $(odb_hdr) +$(dist): export extra_headers := tr1-memory.hxx $(dist): data_dist := test.std $(dist): export name := $(name) $(dist): export extra_dist := $(data_dist) $(call vc9projs,$(name)) \ $(call vc10projs,$(name)) $(dist): - $(call dist-data,$(sources) $(headers) $(data_dist)) + $(call dist-data,$(sources) $(headers) $(extra_headers) $(data_dist)) $(call meta-automake,../template/Makefile.am) $(call meta-vc9projs,../template/template,$(name)) $(call meta-vc10projs,../template/template,$(name)) |