summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-15 16:57:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-15 16:57:48 +0200
commitbe3dc4cee63da92cfa1fa44a0bf90ab11ec7aaca (patch)
treee74b26a798e0ff71bc140bbba3ea30e2eb3ac3e3 /tests
parentf8c61f71ebf44572c9e865a620dc053e94371beb (diff)
Start switch to build2
Diffstat (limited to 'tests')
-rw-r--r--tests/makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/makefile b/tests/makefile
deleted file mode 100644
index 9ac2655..0000000
--- a/tests/makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# file : tests/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
-# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
-# license : MIT; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
-
-tests := ctor erase file inheritance lexer parser specifier
-
-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))