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

.SUFFIXES:

.all: \
    .\graph.exe

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

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