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

.SUFFIXES:

.all: \
    .\expr.exe

.\expr.obj: \
    .\expr.cpp
    @echo " C++ Compiler "
    icc.exe /Tdp /Gh /Ti /Gm /Gd /Fb /Ft- /Fo"expr.obj" /C .\expr.cpp

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