prog8/Makefile

13 lines
383 B
Makefile
Raw Normal View History

2024-02-10 00:54:15 +01:00
# 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"
2024-02-10 00:54:15 +01:00
test:
gradle build
@echo "compiler launch script can be found here: compiler/build/install/compiler-shadow/bin/prog8c"
2024-02-10 00:54:15 +01:00