From d52c1fb406b1cef82c5f5a28fc1804d7d99a49d8 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 17 Nov 2016 01:35:29 +0300 Subject: Add support for build2 for tests and examples --- tests/inheritance/buildfile | 15 +++++++++ tests/inheritance/makefile | 76 --------------------------------------------- 2 files changed, 15 insertions(+), 76 deletions(-) create mode 100644 tests/inheritance/buildfile delete mode 100644 tests/inheritance/makefile (limited to 'tests/inheritance') diff --git a/tests/inheritance/buildfile b/tests/inheritance/buildfile new file mode 100644 index 0000000..0f8bbcb --- /dev/null +++ b/tests/inheritance/buildfile @@ -0,0 +1,15 @@ +# file : tests/erase/buildfile +# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +# license : MIT; see accompanying LICENSE file + +exe{driver}: cxx{driver} {hxx ixx cxx}{test} +exe{driver}: test.arguments = --very-long-flag -s short -i 123 --string long +exe{driver}: test.output = test.std + +cxx.poptions =+ -I$out_base + +# Generated options parser. +# +{hxx ixx cxx}{test}: cli{test} + +cli.options = --generate-description --option-length 17 diff --git a/tests/inheritance/makefile b/tests/inheritance/makefile deleted file mode 100644 index 3d99a99..0000000 --- a/tests/inheritance/makefile +++ /dev/null @@ -1,76 +0,0 @@ -# file : tests/inheritance/makefile -# author : Boris Kolpackov -# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC -# license : MIT; see accompanying LICENSE file - -include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make - -cxx_tun := driver.cxx -cli_tun := test.cli - -# -# -cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o) $(cli_tun:.cli=.o)) -cxx_od := $(cxx_obj:.o=.o.d) - -driver := $(out_base)/driver -test := $(out_base)/.test -clean := $(out_base)/.clean - -# Build. -# -$(driver): $(cxx_obj) -$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) - -genf := $(cli_tun:.cli=.hxx) $(cli_tun:.cli=.ixx) $(cli_tun:.cli=.cxx) -gen := $(addprefix $(out_base)/,$(genf)) - -$(gen): $(out_root)/cli/cli -$(gen): cli := $(out_root)/cli/cli -$(gen): cli_options := --generate-description --option-length 17 - -$(call include-dep,$(cxx_od),$(cxx_obj),$(gen)) - -# Alias for default target. -# -$(out_base)/: $(driver) - -# Test. -# -$(test): driver := $(driver) -$(test): $(driver) $(src_base)/test.std - $(call message,test $$1,$$1 --very-long-flag -s short -i 123 \ ---string long >$(out_base)/test.out,$(driver)) - $(call message,,diff -u $(src_base)/test.std $(out_base)/test.out) - $(call message,,rm -f $(out_base)/test.out) - -# Clean. -# -$(clean): \ - $(driver).o.clean \ - $(addsuffix .cxx.clean,$(cxx_obj)) \ - $(addsuffix .cxx.clean,$(cxx_od)) \ - $(addprefix $(out_base)/,$(cli_tun:.cli=.cxx.cli.clean)) - -# Generated .gitignore. -# -ifeq ($(out_base),$(src_base)) -$(driver): | $(out_base)/.gitignore - -$(out_base)/.gitignore: files := driver $(genf) -$(clean): $(out_base)/.gitignore.clean - -$(call include,$(bld_root)/git/gitignore.make) -endif - -# How to. -# -$(call include,$(bld_root)/cxx/o-e.make) -$(call include,$(bld_root)/cxx/cxx-o.make) -$(call include,$(bld_root)/cxx/cxx-d.make) -$(call include,$(scf_root)/cli/cli-cxx.make) - -# Dependencies. -# -$(call import,$(src_root)/cli/makefile) - -- cgit v1.1