
#   ************************************************************************
#   *			   makefile for spotload.exe			   *
#   ************************************************************************

!INCLUDE	<standard.mak>

TARGETS : spotload.exe

#   MEMBLOCK.C is in the parent directory since it is shared with another
#   program (EATBLOCK).

memblock.obj : ..\memblock.c
  $(COMPILE) ..\memblock.c

#   BREAK.OBJ, MEMSTRAT.OBJ, READBOOL.OBJ and READHEX.OBJ are in the library
#   directory and are assumed to be current.

spotload.exe : dospawn.obj memblock.obj spotload.obj
  $(LINK) /cp:512 /noe @<<spotload.lnk
break+dospawn+memblock+memstrat+readbool+readhex+spotload,spotload;
<<KEEP

#   ************************************************************************

