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

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

examples: libxsde

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

makefile: ;
% :: $(dirs) ;