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

.SUFFIXES:

.all: \
    .\pushpop.exe

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

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