diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,2 +1,15 @@ all: + gradle build + +java: + gradle compileJava + +runjava: java gradle run + + +cpp: + gradle mainExecutable + +runcpp: cpp + ./build/exe/main/main |