aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 4683639b2c502cf4335acdd156b456c37d74c744 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: all
all:
	@$(MAKE) -C src

.PHONY: clean
clean:
	@$(MAKE) -C src clean

%:
	@$(MAKE) -C src $@