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}}