;
;script file to build MYCLI under MANX C
;
;  copy c.lib to ram: if not there
;
;  compile with -s option to supress pointer warning messages
;               -a option so we can assemble with other options
;
cc -aso ram:mycli.asm mycli
;
;  assemble with -s option to make squeeze table bigger
;                    program will crash if this isn't done
;
as -s1900 -o mycli.o ram:mycli.asm
;
;  kill ram: file
;
delete ram:mycli.asm
;
;  link normally
;
ln -o mycli mycli.o -lc

