/Makefile
emu2 = $(HOME)/DOS/emu2.sh
tpc = $(HOME)/DOS/TP/BIN/TPC.EXE

all: asm89.exe

asm89.exe: asm89.pas omf.tpu opcode.tpu util.tpu parse.tpu compiler.tpu

%.tpu: %.pas
	$(emu2) $(tpc) $<

%.exe: %.pas
	$(emu2) $(tpc) $<