
!INCLUDE	<standard.mak>

TARGETS : seglimit.exe

#   GETLIMIT.ASM is in the parent directory since it is shared with other
#   programs.

getlimit.obj : ..\getlimit.asm
  $(ASSEMBLE) ..\getlimit.asm

#   IS80386.OBJ and VM.OBJ are in the library directory and are assumed to
#   be current.

seglimit.exe : getlimit.obj main.obj setlimit.obj
  $(LINK) getlimit+is80386+main+setlimit+vm,seglimit;

