1# file      : tests/cxx/tree/complex/makefile
2# copyright : Copyright (c) 2006-2017 Code Synthesis Tools CC
3# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file
4
5include $(dir $(lastword $(MAKEFILE_LIST)))../../../../build/bootstrap.make
6
7tests := ctor
8
9default   := $(out_base)/
10test      := $(out_base)/.test
11clean     := $(out_base)/.clean
12
13$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
14$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests)))
15$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests)))
16
17$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile))
18