From bcf043ad5983330da8be7dfc68ddd7ea962164d8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 Jul 2011 18:30:15 +0200 Subject: Handle boost files in dist target --- cutl/makefile | 6 ++++-- 1 file 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) -- cgit v1.1