# Hello example - Makefile
# Both Watcom make and Borland make is ok for this

homedir = ..\..

hello.exe : hello.obj
  tlink /3 /x $(homedir)\obj\krnl.obj hello.obj,hello.exe
  $(homedir)\bin\wextfix hello.exe
  del hello.obj

hello.obj : hello.asm
  tasm hello.asm
