home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / database / stocksom / bindings.mak next >
Encoding:
Text File  |  1996-02-22  |  807 b   |  44 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. # bindings.mak
  7.  
  8. .SUFFIXES: .IDL .c
  9.  
  10. .all: \
  11.     .\prclist.xih \
  12.     .\invento.xih \
  13.     .\receive.xih \
  14.     .\prclist.xh \
  15.     .\invento.xh \
  16.     .\receive.xh
  17.  
  18. .IDL.xih:
  19.     @echo " Compile::SOM Compiler "
  20.     sc.exe -sxih -p %s
  21.  
  22. .IDL.xh:
  23.     @echo " Compile::SOM Compiler "
  24.     sc.exe -sxh -p %s
  25.  
  26.  
  27. .\prclist.xih: \
  28.     .\prclist.IDL
  29.  
  30. .\invento.xih: \
  31.     .\invento.IDL
  32.  
  33. .\receive.xih: \
  34.     .\receive.IDL
  35.  
  36. .\prclist.xh: \
  37.     .\prclist.IDL
  38.  
  39. .\invento.xh: \
  40.     .\invento.IDL
  41.  
  42. .\receive.xh: \
  43.     .\receive.IDL
  44.