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

.SUFFIXES:

.all: \
    .\planets.exe

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

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