1
0
mirror of https://github.com/irmen/prog8.git synced 2025-01-12 19:29:50 +00:00
2024-02-10 01:40:36 +01:00

13 lines
389 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/p8compile"
test:
gradle build
@echo "compiler launch script can be found here: compiler/build/install/compiler-shadow/bin/p8compile"