comp30002-project-2/justfile
2025-09-24 12:19:57 +10:00

15 lines
211 B
Makefile

exec := "musician"
target := "target"
# list all commands
default:
@just --list
# build musician
build:
mkdir -p {{target}}
ghc -O2 -o {{target}}/{{exec}} *.hs
# run musician
run:
./target/{{exec}}