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

.SUFFIXES:

.all: \
    .\sumup.exe

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

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