home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / smarts / dax / daxbasic.mak < prev    next >
Encoding:
Text File  |  1996-02-21  |  802 b   |  26 lines

  1. --------------------------------------------------------------------------------
  2. --
  3. -- COPYRIGHT:
  4. --   IBM WorkFrame - Project Smarts
  5. --   (C) Copyright International Business Machines Corporation 1996
  6. --   Licensed Material - Program-Property of IBM - All Rights Reserved.
  7. --   US Government Users Restricted Rights - Use, duplication, or disclosure
  8. --   restricted by GSA ADP Schedule Contract with IBM Corp.
  9. --
  10. --------------------------------------------------------------------------------
  11. .SUFFIXES:
  12. .SUFFIXES: .idl .xih .xh
  13.  
  14. all: $SOURCE_FILE$.xh $SOURCE_FILE$.xih
  15.  
  16. .idl.xh:
  17.         sc -sxh -p $*.idl
  18. .idl.xih:
  19.         sc -sxih -p $*.idl
  20.  
  21. $SOURCE_FILE$.xh:  $SOURCE_FILE$.idl
  22. $SOURCE_FILE$.xih: $SOURCE_FILE$.idl
  23.  
  24. clean:
  25.          del $SOURCE_FILE$.xih $SOURCE_FILE$.xh
  26.