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

.SUFFIXES:

.all: \
    .\animals.exe

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

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