aboutsummaryrefslogtreecommitdiff
path: root/tests/makefile
blob: 0b520869588d3fe7aa530d57886b32fce325c2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# file      : tests/makefile
# 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)