aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 869ecf0e0c03a5d3f5c00d040ebc942809b35af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: cmake

run:
	build/subconscious

cmake:
	cmake --build build -- $(filter-out $@,$(MAKECMDGOALS))

gradle:
	gradle compileJava
	gradle run

tags:
	ctags --extra=+f --exclude=src/main/java -R .