#------------------------
# termwait.MAK make file
#------------------------

all : termwait.exe

OBJS = termwait.obj callback.obj 
COMPILE_OPTS =  -c -Gsw -Os -W3 -Zpe -AM /DWINVER=0x0300
LINK_OPTS =  /MAP /NOD /align:16

termwait.res : termwait.rc
     rc  -r termwait.rc
     
termwait.obj : termwait.c termwait.h
     cl $(COMPILE_OPTS) termwait.c
     
callback.obj : callback.c termwait.h
    cl $(COMPILE_OPTS) callback.c
    
termwait.exe :: $(OBJS) termwait.def termwait.res
     link $(LINK_OPTS) $(OBJS), termwait, termwait, mlibcew libw toolhelp, termwait
     mapsym termwait
     rc /30 termwait.res
     
termwait.exe ::  termwait.res
     rc /30 termwait.res


