From f0fb6aeab118255266370121db79ab2a2fed88ad Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 13 Sep 2009 18:41:38 +0200 Subject: Add the fs::basic_path class --- tests/fs/makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/fs/makefile (limited to 'tests/fs/makefile') diff --git a/tests/fs/makefile b/tests/fs/makefile new file mode 100644 index 0000000..071c394 --- /dev/null +++ b/tests/fs/makefile @@ -0,0 +1,18 @@ +# file : tests/fs/makefile +# author : Boris Kolpackov +# copyright : Copyright (c) 2009 Code Synthesis Tools CC +# license : MIT; see accompanying LICENSE file + +include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make + +tests := path + +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