winure/justfile

18 lines
316 B
Makefile
Raw Normal View History

2024-06-14 11:24:46 -04:00
alias b := build
alias i := install
build TARGET:
2024-06-14 11:26:53 -04:00
just {{TARGET}}/build
2024-06-14 11:24:46 -04:00
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 {
2024-06-14 11:26:53 -04:00
just {{TARGET}}/install `realpath {{DIR}}`
2024-06-14 11:24:46 -04:00
}