mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
abbf7c7cb0
fat jar file also changed: prog8c-X.Y-all.jar (was: prog8compiler-X.Y-all.jar)
13 lines
383 B
Makefile
13 lines
383 B
Makefile
# super simple Makefile to lauch the main gradle targets to build and/or test the prog8 compiler
|
|
|
|
.PHONY: all test
|
|
|
|
all:
|
|
gradle installdist installshadowdist
|
|
@echo "compiler launch script can be found here: compiler/build/install/compiler-shadow/bin/prog8c"
|
|
|
|
test:
|
|
gradle build
|
|
@echo "compiler launch script can be found here: compiler/build/install/compiler-shadow/bin/prog8c"
|
|
|