aboutsummaryrefslogtreecommitdiff
path: root/cutl
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-07-22 18:30:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-07-22 18:30:15 +0200
commitbcf043ad5983330da8be7dfc68ddd7ea962164d8 (patch)
tree27f0d4d01a4071ce520b910875ac290d5ac5a259 /cutl
parent4cf1c50885661c9989279091285f497462c77ad1 (diff)
Handle boost files in dist target
Diffstat (limited to 'cutl')
-rw-r--r--cutl/makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/cutl/makefile b/cutl/makefile
index b90e211..d689722 100644
--- a/cutl/makefile
+++ b/cutl/makefile
@@ -75,15 +75,17 @@ $(out_base)/: $(cutl.l)
# Dist.
#
$(dist): export sources := $(cxx_tun)
-$(dist): export headers = $(subst $(src_base)/,,$(shell find $(src_base) \
+$(dist): export headers := $(subst $(src_base)/,,$(shell find $(src_base) \
-name '*.hxx' -o -name '*.ixx' -o -name '*.txx'))
$(dist): export extra_dist := libcutl-vc9.vcproj libcutl-vc10.vcxproj \
libcutl-vc10.vcxproj.filters
+$(dist): boost := $(subst $(src_base)/,,$(shell find \
+$(src_base)/details/boost -type f))
$(dist): export interface_version = $(shell sed -e \
's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version)
$(dist):
- $(call dist-data,$(sources) $(headers) details/config.h.in)
+ $(call dist-data,$(sources) $(headers) $(boost) details/config.h.in)
$(call meta-vc9proj,libcutl-vc9.vcproj)
$(call meta-vc10proj,libcutl-vc10.vcxproj)
$(call meta-automake)