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

.SUFFIXES:

.all: \
    .\intkyset.exe

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

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

     intkyset.obj
<<
