
#   ************************************************************************
#   *			   makefile for eatblock.exe			   *
#   ************************************************************************

!INCLUDE	<standard.mak>

TARGETS : eatblock.exe

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

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

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

eatblock.exe : eatblock.obj malloc.obj memblock.obj
  $(LINK) /cp:512 break+eatblock+malloc+memblock+memstrat+readhex,eatblock;

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

