# Power View IDE makefile export

# Project: D:\WORK\BSP\ZIP\BSP.WPJ

code_size = 386

compiler_options = -mf -5r -s -otlranmi -fp5 -zp1 -zdp -fpi87 -fp3 -w2 -e20    

linker_options = &
  option eliminate &
  system dos4g &
  option stack=8192

object_files = &
  DRAWASM.OBJ &
  DRAW.OBJ &
  MOVE.OBJ &
  MAP.OBJ &
  BSP.OBJ

BSP.EXE : $(object_files)
  *wlink $(linker_options) name BSP.EXE file {$(object_files)}

DRAWASM.OBJ : DRAWASM.ASM .AUTODEPEND
  TASM /i /m /zi DRAWASM.ASM, DRAWASM.OBJ 

DRAW.OBJ : DRAW.CPP .AUTODEPEND
  *wpp$(code_size) $(compiler_options) $[* 

MOVE.OBJ : MOVE.CPP .AUTODEPEND
  *wpp$(code_size) $(compiler_options) $[* 

MAP.OBJ : MAP.CPP .AUTODEPEND
  *wpp$(code_size) $(compiler_options) $[* 

BSP.OBJ : BSP.CPP .AUTODEPEND
  *wpp$(code_size) $(compiler_options) $[* 