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

.SUFFIXES:

.all: \
    .\dskusage.exe

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

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