add rom built check for faster tests
This commit is contained in:
parent
744cd74016
commit
b2ec1a78d2
2
cli
2
cli
|
|
@ -22,8 +22,10 @@ fi
|
||||||
|
|
||||||
case $EMIT in
|
case $EMIT in
|
||||||
"uxn")
|
"uxn")
|
||||||
|
if [ ! -f "./out/$1.rom" ]; then
|
||||||
./out/$ARCH/undar -emit=uxn $1 > ./out/tmp.tal
|
./out/$ARCH/undar -emit=uxn $1 > ./out/tmp.tal
|
||||||
$(which uxncli) $HOME/roms/uxn/drifblim.rom ./out/tmp.tal ./out/$1.rom 2> /dev/null
|
$(which uxncli) $HOME/roms/uxn/drifblim.rom ./out/tmp.tal ./out/$1.rom 2> /dev/null
|
||||||
|
fi
|
||||||
$(which uxncli) ./out/$1.rom
|
$(which uxncli) ./out/$1.rom
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
||||||
2
gui
2
gui
|
|
@ -22,8 +22,10 @@ fi
|
||||||
|
|
||||||
case $EMIT in
|
case $EMIT in
|
||||||
"uxn")
|
"uxn")
|
||||||
|
if [ ! -f "./out/$1.rom" ]; then
|
||||||
./out/$ARCH/undar -emit=uxn $1 > ./out/tmp.tal
|
./out/$ARCH/undar -emit=uxn $1 > ./out/tmp.tal
|
||||||
$(which uxncli) $HOME/roms/uxn/drifblim.rom ./out/tmp.tal ./out/$1.rom 2> /dev/null
|
$(which uxncli) $HOME/roms/uxn/drifblim.rom ./out/tmp.tal ./out/$1.rom 2> /dev/null
|
||||||
|
fi
|
||||||
$(which uxn11) ./out/$1.rom
|
$(which uxn11) ./out/$1.rom
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue