#----------------------
# MAKEFILE for tstmci.exe
#----------------------
# debug information
WINCC=cl -DWIN30 -DWIN31 -I.\INC -Zi -c -AL -Od -W2 -Zp1
WINLINK=link /nod /CO

# standard compile and link
#WINCC=cl -DWIN30 -DWIN31 -I.\INC -c -AL -Od -W2 -Zp1
#WINLINK=link /nod

WINRC=rc -I.\inc -r

tstmci.exe : tstmci.obj tstcmd.obj tstmci.def tstmci.res
     $(WINLINK) @tstmci.rsp
     rc -t tstmci.res

tstmci.obj : tstmci.c tstmci.h
     $(WINCC) tstmci.c

tstcmd.obj : tstcmd.c tstmci.h
     $(WINCC) tstcmd.c

tstmci.res : tstmci.rc tstmci.h
     $(WINRC) tstmci.rc
