#------------------------
# TEST.MAK make file
#------------------------

WINLINK=tlink /c /n /Tw /Ld:\bc\owl\lib;d:\bc\classlib\lib;d:\bc\lib c0ws
WINLIB=import mathws cws
WINCC=bcc -c -w-par -P -W -2
WINRC=rc -r -id:\bc\include

test.exe : test.obj status.obj test.def test.res
     $(WINLINK) test status, test, NUL, $(WINLIB) owlws tclasss, test
     rc -t test.res

test.obj : test.cpp
     $(WINCC) -I$(INCLUDE) -DWIN31 test.cpp

status.obj : status.cpp
     $(WINCC) -I$(INCLUDE) -DWIN31 status.cpp

test.res : test.rc
     $(WINRC) test.rc
