
.AUTODEPEND
#               *Local definitions

#		*Translator Definitions*
TASM = TASM /zi /m2 /i$(INCLUDEPATH)
TLIB = tlib
TLINK = tlink

#		*Implicit Rules*
.asm.obj:
  &$(TASM) $? 

.c.obj:
  $(CC) -c {$< }

.cpp.obj:
  $(CC) -c {$< }


#		*List Macros*
    
EXE_dependencies =  \
breaks.obj \
cpuid.obj \
dis.obj \
dispatch.obj \
dos.obj \
drive.obj \
dump.obj \
entry.obj \
env.obj \
exec.obj \
fill.obj \
fileio.obj \
fp.obj \
help.obj \
history.obj \
inout.obj \
input.obj \
ints.obj \
logging.obj \
loader.obj \
math.obj \
memory.obj \
mtrap.obj \
opcodes.obj \
opcom.obj \
operands.obj \
options.obj \
prints.obj \
regs.obj  \
search.obj \
swift.obj
#		*Explicit Rules*
grdb.exe: $(EXE_dependencies)
  $(TLINK) /3/m/s/L$(LIBPATH) @&&|
$(EXE_dependencies)
grdb.exe
grdb.map
	# NO Lib file
|
link:
  $(TLINK) /3/m/s/L$(LIBPATH) @&&|
$(EXE_dependencies)
grdb.exe
grdb.map
	# NO Lib file
|