home *** CD-ROM | disk | FTP | other *** search
- .AUTODEPEND
-
- TOOLS = c:\c\bin # Change this to where the compiler/linker is
- INCLUDE = c:\c\include # Change this to where your standard header files are
- LIB = C:\c\lib # Change this to where your 'C' libraries files are
-
- CC = $(TOOLS)\bcc +coroner.cfg
- TASM = $(TOOLS)\tasm
- TLINK = $(TOOLS)\tlink
-
- LINK_INCLUDE = coroner.obj th_asm.obj xcptrept.obj coroner.def
-
- coroner.exe: coroner.cfg $(LINK_INCLUDE) coroner.res
- $(TLINK) /A=16 /x /c /Twe /L$(LIB) @&&|
- c0ws.obj th_asm.obj coroner.obj xcptrept.obj
- coroner
- coroner
- import.lib toolhelp.lib cws.lib
- coroner.def
- |
- RC -t coroner.res coroner.exe
-
- .c.obj:
- $(CC) -c {$< }
-
- # *Individual File Dependencies*
- coroner.res: coroner.rc
- RC -R -I$(INCLUDE) coroner.RC
-
- th_asm.obj: th_asm.asm
- $(TASM) /m2 /MX /ZI /O th_asm.asm
-
- # *Compiler Configuration File*
- coroner.cfg: coroner.mak
- copy &&|
- -2 -w -WE -I$(INCLUDE) -d -H=CORONER.PCH
- | coroner.cfg
-
-
-