aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile17
1 files changed, 7 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 88e31ec..869ecf0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,14 @@
-all: runcpp
+all: cmake
-java:
- gradle compileJava
-
-runjava: java
- gradle run
+run:
+ build/subconscious
-cpp:
+cmake:
cmake --build build -- $(filter-out $@,$(MAKECMDGOALS))
-runcpp: cpp
- ./build/exe/main/main
-
+gradle:
+ gradle compileJava
+ gradle run
tags:
ctags --extra=+f --exclude=src/main/java -R .