From f80de9f4107a01ab3a917eddf15eaaf4a1c998a2 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 18 Sep 2012 10:28:51 +0200 Subject: Add building blocks for multi-index containers --- tests/container/makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/container/makefile (limited to 'tests/container/makefile') diff --git a/tests/container/makefile b/tests/container/makefile new file mode 100644 index 0000000..5f537db --- /dev/null +++ b/tests/container/makefile @@ -0,0 +1,17 @@ +# file : tests/container/makefile +# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +# license : MIT; see accompanying LICENSE file + +include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make + +tests := multi-index + +default := $(out_base)/ +test := $(out_base)/.test +clean := $(out_base)/.clean + +$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests))) +$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests))) +$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests))) + +$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile)) -- cgit v1.1