winure/justfile

17 lines
313 B
Makefile

alias b := build
alias i := install
build TARGET:
just {{TARGET}}/build
install TARGET='all' DIR="~/.bin/":
if {{TARGET}} = all {
just install scripts {{DIR}}
just install mkwin {{DIR}}
just install path-convert {{DIR}}
just install qdls {{DIR}}
} else {
just {{TARGET}}/install `realpath {{DIR}}`
}