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

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