aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 24a858093678ed5add720119441e7e135fa2930d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Top level makefile, the real shit is at src/Makefile
#

default: all

.DEFAULT:
	cd src && "$(MAKE)" $@
	cd utils && "$(MAKE)" $@

doc:
	cd doc && "$(MAKE)"

.PHONY: doc