fix: separate abra/kababra makefile targets

This commit is contained in:
2023-09-05 11:46:18 +02:00
committed by decentral1se
parent b3bd058962
commit 25258d3d64
2 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,7 @@
_build_abra() {
if [[ ! -e "$ROOT/abra" ]]; then
cd "$ROOT" && make build-dev
cd "$ROOT" && make build-abra
return 0
fi
return 0
@ -10,7 +10,7 @@ _build_abra() {
_build_kadabra() {
if [[ ! -e "$ROOT/kadabra" ]]; then
cd "$ROOT" && make build-dev
cd "$ROOT" && make build-kadabra
return 0
fi
return 0