von
#
# shell to compile and bind BZONE
#
if eqs   ^1 then
  args 'USAGE: bzone_bld node_type (e.g. 560)'
else
  ftn bzone_main #-opt 4 -cpu ^1 
  ftn bzone_graphics_subs #-opt 4 -cpu ^1 
  ftn bzone_strategy_subs #-opt 4 -cpu ^1 
  ftn bzone_scores #-opt 4 -cpu ^1 
  bind bzone_main.bin -b bzone_^1 bzone_graphics_subs.bin bzone_strategy_subs.bin bzone_scores.bin
  dlf bzone_main.bin bzone_graphics_subs.bin bzone_strategy_subs.bin bzone_scores.bin
endif
voff

