From b6ca3cf5ba4d6b409025857a6e99d22b43288676 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 Jul 2011 18:46:01 +0200 Subject: More fixes to boost handling in dist --- cutl/makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cutl') diff --git a/cutl/makefile b/cutl/makefile index d689722..077c951 100644 --- a/cutl/makefile +++ b/cutl/makefile @@ -77,15 +77,15 @@ $(out_base)/: $(cutl.l) $(dist): export sources := $(cxx_tun) $(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): data_dist := $(subst $(src_base)/,,$(shell find \ +$(src_base)/details/boost -type f ! -name '*.cxx')) +$(dist): export extra_dist := $(data_dist) libcutl-vc9.vcproj \ +libcutl-vc10.vcxproj libcutl-vc10.vcxproj.filters $(dist): export interface_version = $(shell sed -e \ 's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version) $(dist): - $(call dist-data,$(sources) $(headers) $(boost) details/config.h.in) + $(call dist-data,$(sources) $(headers) $(data_dist) details/config.h.in) $(call meta-vc9proj,libcutl-vc9.vcproj) $(call meta-vc10proj,libcutl-vc10.vcxproj) $(call meta-automake) -- cgit v1.1