aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 88e31ec5997c85c1708c573b1e01f124ec3b74f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: runcpp

java:
	gradle compileJava

runjava: java
	gradle run

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

runcpp: cpp
	./build/exe/main/main


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