JLox/Makefile
Ashley Rose 5dac9efd38
Init
2025-11-01 19:02:37 -05:00

16 lines
243 B
Makefile

VERSION=1.0-SNAPSHOT
jar:
mvn package
linux-build: jar
mkdir -p build
cat ./stub.sh ./target/jlox-$(VERSION).jar > ./build/jlox
chmod +x ./build/jlox
install: linux-build
mv ./build/jlox /usr/local/bin/jlox
clean:
rm -r build target