home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / DATABASE / STOCK / SOM / BINDINGS.MAK next >
Text File  |  1995-06-06  |  1KB  |  63 lines

  1. # This file is a workaround for the problem with the SOM Compiler action.
  2. # For this release, the action does not correctly identify the target
  3. # output files (.cpp, .xh, .xih), which prevents successful completion
  4. # of the Makemake and build actions.
  5.  
  6. # makefile
  7. # Created by IBM WorkFrame/2 MakeMake at 18:41:33 on 16 May 1995
  8. #
  9. # The actions included in this makefile are:
  10. #  Compile::SOM Compiler
  11.  
  12. .SUFFIXES: .IDL .c
  13.  
  14. .all: \
  15.     .\PRCLISTI.cpp \
  16.     .\INVENTOI.cpp \
  17.     .\RECEIVEI.cpp \
  18.     .\PRCLISTI.xih \
  19.     .\INVENTOI.xih \
  20.     .\RECEIVEI.xih \
  21.     .\PRCLISTI.xh \
  22.     .\INVENTOI.xh \
  23.     .\RECEIVEI.xh
  24.  
  25. .IDL.cpp:
  26.     @echo " Compile::SOM Compiler "
  27.     sc.exe -E SMEMIT=xc;xh;xih; %s
  28.  
  29. .IDL.xih:
  30.     @echo " Compile::SOM Compiler "
  31.     sc.exe -E SMEMIT=xc;xh;xih; %s
  32.  
  33. .IDL.xh:
  34.     @echo " Compile::SOM Compiler "
  35.     sc.exe -E SMEMIT=xc;xh;xih; %s
  36.  
  37. .\PRCLISTI.cpp: \
  38.     .\PRCLISTI.IDL
  39.  
  40. .\INVENTOI.cpp: \
  41.     .\INVENTOI.IDL
  42.  
  43. .\RECEIVEI.cpp: \
  44.     .\RECEIVEI.IDL
  45.  
  46. .\PRCLISTI.xih: \
  47.     .\PRCLISTI.IDL
  48.  
  49. .\INVENTOI.xih: \
  50.     .\INVENTOI.IDL
  51.  
  52. .\RECEIVEI.xih: \
  53.     .\RECEIVEI.IDL
  54.  
  55. .\PRCLISTI.xh: \
  56.     .\PRCLISTI.IDL
  57.  
  58. .\INVENTOI.xh: \
  59.     .\INVENTOI.IDL
  60.  
  61. .\RECEIVEI.xh: \
  62.     .\RECEIVEI.IDL
  63.