2d3 ..AUTODEPEND # *Translator Definitions* CC = bcc +MORSE.CFG TASM = TASM TLINK = tlink # *Implicit Rules* ..c.obj: $(CC) -c {$< } ..cpp.obj: $(CC) -c {$< } # *List Macros* EXE_dependencies = \ morse.obj \ ..\lib\mylibs.lib \ ..\lib\sbcsr.lib \ fm.obj # *Explicit Rules* morse.exe: morse.cfg $(EXE_dependencies) $(TLINK) /v/x/c/P-/LC:\DVL\BC\LIB @&&| c0s.obj+ morse.obj+ fm.obj morse # no map file ...\lib\mylibs.lib+ ...\lib\sbcsr.lib+ cs.lib | # *Individual File Dependencies* morse.obj: morse.c # *Compiler Configuration File* morse.cfg: morse.mak copy &&| -2 -f- -C -v -G -r- -IC:\DVL\BC\INCLUDE -LC:\DVL\BC\LIB | morse.cfg . 0