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

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