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
|
|
|
|
2024-06-14 11:28:47 -04:00
|
|
|
install TARGET='all' DIR="~/.bin/":
|
2024-06-14 11:24:46 -04:00
|
|
|
if {{TARGET}} = all {
|
2024-06-14 11:28:47 -04:00
|
|
|
just install scripts {{DIR}}
|
|
|
|
just install mkwin {{DIR}}
|
|
|
|
just install path-convert {{DIR}}
|
|
|
|
just install qdls {{DIR}}
|
2024-06-14 11:24:46 -04:00
|
|
|
} else {
|
2024-06-14 11:28:47 -04:00
|
|
|
just {{TARGET}}/install `realpath {{DIR}}`
|
2024-06-14 11:24:46 -04:00
|
|
|
}
|
|
|
|
|