DEBUG=/de
CFLAGS=/Ge+ /Gm+ /Gd+ /Ti /C+ /G5 /Q+ /DREALLY_THROW_EXCEPTIONS

all: Test.exe

Test.exe: Test.obj  \
          Test.def  \
          Test.res
          ilink /NOLOGO $(DEBUG) Test.obj Test.def JLib0150.Lib
          rc Test.res Test.exe

.cpp.obj:
   icc $(CFLAGS) /Fo$* $<

Test.obj: Test.cpp Test.hpp

Test.res: Test.rc Test.h
          rc /r Test.rc Test.res
