#----------------------------------------------------------------------------
# WATCOM WMAKE
#----------------------------------------------------------------------------

COptions = -fh -mf -i=C:\develop\INC -d__C32__ -7 -d2  #/oneatx  
AOptions = -zi -m9 -ID:\WC\H -d__C32__
LOptions = debug all 
System   = 386
ExeFile  = sfxpro.exe

ObjectFiles = &
  !include makefile.lst

#----------------------------------------------------------------------------
.SILENT

.c: C:\DEVELOP\TOOL
.c.obj: .AUTODEPEND
  wcc386 $(COptions) $<

.asm: C:\DEVELOP\TOOL
.asm.obj: .AUTODEPEND
  tasm $(AOptions) $< 

sfxpro.exe: $(ObjectFiles)
  wlink system $(System) $(LOptions) name $(ExeFile) file {@makefile.lst}

#----------------------------------------------------------------------------
