summaryrefslogtreecommitdiff
path: root/tests/makefile
blob: 67f6e37225125b0baa03e14d023f0d96432f14e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# file      : tests/makefile
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2009 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)