home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / graph / makefile < prev    next >
Encoding:
Makefile  |  1996-02-22  |  604 b   |  31 lines

  1. # graph.mak
  2. #
  3. # The actions included in this make file are:
  4. #  C++ Compiler
  5. #  Linker
  6.  
  7. .SUFFIXES:
  8.  
  9. .all: \
  10.     .\graph.exe
  11.  
  12. .\graph.obj: \
  13.     .\graph.cpp \
  14.     {.\;$(INCLUDE);}circle.h \
  15.     {.\;$(INCLUDE);}line.h \
  16.     {.\;$(INCLUDE);}graph.h \
  17.     {.\;$(INCLUDE);}curve.h
  18.     @echo " C++ Compiler "
  19.     icc.exe /Tdp /Gh /Ti /Gm /Gd /Fb /Ft- /Fo"graph.obj" /C .\graph.cpp
  20.  
  21. .\graph.exe: \
  22.     .\graph.obj \
  23.      {.\;$(LIB);}CPPWPA3.OBJ
  24.     @echo " Linker "
  25.     icc.exe @<<
  26.      /B" /de /br /m /l /code:RX /data:RW"
  27.      /def /Fegraph.exe
  28.      CPPWPA3.OBJ
  29.      graph.obj
  30. <<
  31.