.AUTODEPEND
#               *Local definitions

#		*Translator Definitions*
CC = bcc +midis.cfg
TASM = TASM /zi $(INCLUDEPATH)
TLIB = tlib
TLINK = link
LIBPATH = C:\BC45\LIB
INCLUDEPATH = /I..\include /I\cimple\lib


#		*Implicit Rules*
.asm.obj:
  $(TASM) {$< }

.c.obj:
  $(CC) -c {$< }

.cpp.obj:
  $(CC) -c {$< }

#		*List Macros*
    
EXE_dependencies =  \
clipreg.obj
#		*Explicit Rules*
win.exe: $(EXE_dependencies)
  $(TLINK) /s /L$(LIBPATH) @&&|
win.exe
win.map
clipreg.obj
	# NO Lib file
|

#		*Individual File Dependencies*
clipreg.obj: ..\source\clipreg.asm
	$(TASM) ..\source\clipreg.asm