aboutsummaryrefslogtreecommitdiff
path: root/tests/makefile
blob: ef67e6075bb4dbf1984de2bdbcd5e844b0afb8a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# file      : tests/makefile
# copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make

# NOTE: remember to update dist/tests/{makefile,nmakefile} if
# you change anything here.
#

default  := $(out_base)/
test     := $(out_base)/.test
dist     := $(out_base)/.dist
dist-win := $(out_base)/.dist-win
clean    := $(out_base)/.clean

$(default): $(out_base)/cxx/
$(test): $(out_base)/cxx/.test
$(dist): $(out_base)/cxx/.dist
$(dist-win): $(out_base)/cxx/.dist-win
$(clean): $(out_base)/cxx/.clean

$(call import,$(src_base)/cxx/makefile)