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

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

tests: libxsde
examples: libxsde

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

makefile: ;
% :: $(dirs) ;