jlox/Makefile

13 lines
317 B
Makefile
Raw Normal View History

2024-11-04 10:05:48 +01:00
2024-11-04 10:07:49 +01:00
.PHONY: build
2024-11-04 10:05:48 +01:00
build:
javac -d build/classes src/com/craftinginterpreters/lox/*
2024-11-04 10:50:46 +01:00
javac -d build/classes src/com/craftinginterpreters/tool/*
2024-11-04 10:05:48 +01:00
2024-11-04 10:50:46 +01:00
lox:
2024-11-04 10:05:48 +01:00
java -cp build/classes com.craftinginterpreters.lox.Lox
2024-11-04 10:50:46 +01:00
gen-ast:
java -cp build/classes com.craftinginterpreters.tool.GenerateAst ./src/com/craftinginterpreters/lox