aboutsummaryrefslogtreecommitdiff
path: root/dist/makefile
blob: 83b966143ec6c7ff927826c7b3cd5ec46d739dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dirs := libxsde examples

ifneq ($(filter $(MAKECMDGOALS),gen test clean cleanobj),)
dirs += tests
endif

.PHONY: all $(dirs)
all: $(dirs)

tests: libxsde
examples: libxsde

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

makefile: ;
% :: $(dirs) ;