aboutsummaryrefslogtreecommitdiff
path: root/tests/fs/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-09-13 18:41:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-09-13 18:41:38 +0200
commitf0fb6aeab118255266370121db79ab2a2fed88ad (patch)
tree25deca2aaf0ce2cf468f6d1253b075758ddf926e /tests/fs/makefile
parent29c8ce737f513766673fd3e57e30233d9fcce159 (diff)
Add the fs::basic_path class
Diffstat (limited to 'tests/fs/makefile')
-rw-r--r--tests/fs/makefile18
1 files changed, 18 insertions, 0 deletions
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 <boris@codesynthesis.com>
+# 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))