home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database / CLIPR503.W96 / DBU.RM_ / DBU.RM
Text File  |  1995-06-26  |  968b  |  42 lines

  1. //
  2. //    Dbu.rmk
  3. //
  4. //    Standard make file for DBU utility
  5. //
  6. //    Copyright (c) 1990-1993, Computer Associates International Inc.
  7. //    All rights reserved.
  8. //
  9. //    NOTE:
  10. //       In order to build DBU with debugger (CLD) support you must
  11. //       define the macro name DEBUG.  This can be accomplished as
  12. //       follows:
  13. //
  14. //       RMAKE DBU /dDEBUG
  15. //
  16.  
  17. // Determine if DEBUGging is enabled
  18. #ifdef DEBUG
  19.    CompOptions := /b /m /n
  20. #else
  21.    CompOptions := /m /n
  22. #end
  23.  
  24. .prg.obj:
  25.     clipper $< $(CompOptions)
  26.  
  27.  
  28. dbu.obj:        dbu.prg
  29. dbuutil.obj:    dbuutil.prg
  30. dbuhelp.obj:    dbuhelp.prg
  31. dbuview.obj:    dbuview.prg
  32. dbuindx.obj:    dbuindx.prg
  33. dbuedit.obj:    dbuedit.prg
  34. dbucopy.obj:    dbucopy.prg
  35. dbustru.obj:    dbustru.prg
  36. dbunet.obj:     dbunet.prg
  37.  
  38.  
  39. dbu.exe:        dbu.obj  dbuutil.obj  dbuhelp.obj  dbuview.obj  \
  40.                 dbuindx.obj  dbuedit.obj  dbucopy.obj  dbustru.obj dbunet.obj
  41.    blinker @dbu
  42.