aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/serializer/validation/built-in/makefile
blob: 93fde86b43eb7dbbc481e9d689eb918872a84554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
root := ../../../../..

include $(root)/build/config.make

dirs := date-time decimal integer qname string

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
%.make:: ;

%:: $(dirs) ;