aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/makefile
blob: daff807f9e972048706f5a9f246bfdbaba2e4edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
root := ../..

include $(root)/build/config.make

dirs := string hybrid parser serializer

ifeq ($(XSDE_POLYMORPHIC),y)
dirs += hashmap
endif

.PHONY: all $(dirs)

all: $(dirs)

$(dirs):
	@$(MAKE) -C $@ $(MAKECMDGOALS)

makefile: ;
% :: $(dirs) ;