15 lines
211 B
Makefile
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}}
|