blob: 661571b6c110b58ecc1a49ef8d553e63ea183774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# file : tests/makefile
# copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
default := $(out_base)/
test := $(out_base)/.test
clean := $(out_base)/.clean
$(default): $(out_base)/cxx/
$(test): $(out_base)/cxx/.test
$(clean): $(out_base)/cxx/.clean
$(call import,$(src_base)/cxx/makefile)
|