aboutsummaryrefslogtreecommitdiff
path: root/dist/makefile
blob: f1b7a7e2b9dae11dd95a766c524ca1addd7ab5df (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 clean cleanobj),)
dirs += tests
endif

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

tests: libxsde
examples: libxsde

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

makefile: ;
% :: $(dirs) ;