#######################################################
##  makefile                                         ##
## -- Project file for CaptFont Demo Application.    ##
#######################################################
all: captfont.exe 

.c.obj:
    cc -c -d -wea -DSTRICT $<

captfont.obj: captfont.c symdll.h

symbase.obj: symbase.c symdll.h symhook.h symbase.h
symhook.obj: symhook.c symdll.h symhook.h symbase.h

captfont.exe: captfont.obj captfont.def symdll.lib
    cc -d captfont.obj symdll.lib

symdll.dll:   symbase.obj symhook.obj symdll.def
    cc -d -osymdll.dll symbase.obj symhook.obj  symdll.def toolhelp.lib

symdll.lib  : symdll.dll
    implib symdll.lib symdll.def
