IIgs: only try to make .po if AppleCommander is present

This commit is contained in:
mgcaret 2019-12-16 11:11:10 -08:00
parent 36391ed21d
commit 3601d28461
1 changed files with 5 additions and 2 deletions

View File

@ -6,5 +6,8 @@ ca65 -I ../../inc IIgs.s -l IIgs.lst
../../build.sh IIgs
ld65 -C IIgs.l -S 0x8000 IIgs.o ../../forth.o -m forth.map -o forth
ls -l forth
java -jar ${ACMD} -pro140 forth.po FORTH
java -jar ${ACMD} -p forth.po FORTH SYS < forth
if [ -r "${ACMD}" ]; then
java -jar ${ACMD} -pro140 forth.po FORTH
java -jar ${ACMD} -p forth.po FORTH SYS < forth
fi