# wordbag.mak
#
# The actions included in this make file are:
#  C++ Compiler
#  Linker

.SUFFIXES:

.all: \
    .\wordbag.exe

.\wordbag.obj: \
    .\wordbag.cpp \
    {.\;$(INCLUDE);}toyword.h
    @echo " C++ Compiler "
    icc.exe /Tdp /Gh /Ti /Gm /Gd /Fb /Ft- /Fo"wordbag.obj" /C .\wordbag.cpp

.\wordbag.exe: \
    .\wordbag.obj \
     {.\;$(LIB);}CPPWPA3.OBJ
    @echo " Linker "
    icc.exe @<<
     /B" /de /br /m /l /code:RX /data:RW"
     /def /Fewordbag.exe
     CPPWPA3.OBJ
     wordbag.obj
<<
