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

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