home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / database / stockcpp / makefile < prev    next >
Encoding:
Makefile  |  1996-02-22  |  1.4 KB  |  61 lines

  1. # Makefile
  2.  
  3. .SUFFIXES:
  4.  
  5. .all: \
  6.     .\client.exe
  7.  
  8. ./prclist.obj: \
  9.     .\prclist.cpp \
  10.     {.\;$(INCLUDE);}prclist.hpp
  11.     @echo " C++ Compiler "
  12.     icc.exe /qwin32s /qautothread /Sn /Gh /Ti /Gm /Gd /Fb /Fo"%|dpfF.obj" /C .\prclist.cpp
  13.  
  14. .\client.obj: \
  15.     .\client.cpp \
  16.     {.\;$(INCLUDE);}store.hpp
  17.     @echo " C++ Compiler "
  18.     icc.exe /qwin32s /qautothread /Sn /Gh /Ti /Gm /Gd /Fb /Fo"%|dpfF.obj" /C .\client.cpp
  19.  
  20. .\Receive.obj: \
  21.     .\Receive.cpp \
  22.     {.\;$(INCLUDE);}Receive.hpp
  23.     @echo " C++ Compiler "
  24.     icc.exe /qwin32s /qautothread /Sn /Gh /Ti /Gm /Gd /Fb /Fo"%|dpfF.obj" /C .\Receive.cpp
  25.  
  26. .\Invento.obj: \
  27.     .\Invento.cpp \
  28.     {.\;$(INCLUDE);}Invento.hpp
  29.     @echo " C++ Compiler "
  30.     icc.exe /qwin32s /qautothread /Sn /Gh /Ti /Gm /Gd /Fb /Fo"%|dpfF.obj" /C .\Invento.cpp
  31.  
  32. .\store.obj: \
  33.     .\store.cpp \
  34.     {.\;$(INCLUDE);}store.hpp
  35.     @echo " C++ Compiler "
  36.     icc.exe /qwin32s /qautothread /Sn /Gh /Ti /Gm /Gd /Fb /Fo"%|dpfF.obj" /C .\store.cpp
  37.  
  38. .\client.exe: \
  39.     .\prclist.obj \
  40.     .\store.obj \
  41.     .\Invento.obj \
  42.     .\Receive.obj \
  43.     .\client.obj   \
  44.     {$(LIB)}redirect.obj
  45.     @echo " Link "
  46.     icc.exe @<<
  47.     /qwin32s /qautothread
  48.      /Tdp /Sn
  49.      /Gh /Ti /Gm /Gd
  50.      /Fb  /B" /de /br /noe /code:RX /data:RW"
  51.      /B" /def"
  52.      /Feclient.exe
  53.      redirect.obj
  54.      CPPWPA3.OBJ
  55.      .\Receive.obj
  56.      .\STORE.obj
  57.      .\CLIENT.obj
  58.      .\Invento.obj
  59.      .\Prclist.obj
  60. <<
  61.