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

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