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

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