15 lines
246 B
Makefile
15 lines
246 B
Makefile
exec := "musician"
|
|
target := "target"
|
|
|
|
# list all commands
|
|
default:
|
|
@just --list
|
|
|
|
# build musician
|
|
build:
|
|
mkdir -p {{target}}
|
|
ghc -O2 -odir {{target}} -hidir {{target}} -o {{target}}/{{exec}} *.hs
|
|
|
|
# run musician
|
|
run:
|
|
./target/{{exec}}
|