summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3da8a070c6ff5c2b9d93443f978f13243ff17962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# vim: tabstop=4 shiftwidth=4 noexpandtab

debug:
	make -C actix debug

release:
	make -C actix release

all: release

clean:
	make -C actix clean