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

  1. //
  2. //  RL.RMK
  3. //
  4. //  Make file for RL, CA-Clipper REPORT and LABEL FORM design program.
  5. //
  6. //  Copyright (c) 1990-1995, Computer Associates International, Inc.
  7. //  All rights reserved.
  8. //
  9.  
  10. // Define comma separated obj list as a macro
  11. objs=RLFRONT, RLBACK, RLDIALG
  12.  
  13. // Inference rule for compiling (.prg) to .OBJ files
  14. .prg.obj:
  15.     CLIPPER $< /m /n
  16.  
  17. // Dependency statements for .OBJ files
  18. RLFRONT.OBJ: .\Rlfront.prg
  19. RLBACK.OBJ: .\Rlback.prg
  20. RLDIALG.OBJ: .\Rldialg.prg
  21.  
  22. // Dependency rule for linking .OBJ files to .EXE file
  23. RL.EXE: RLFRONT.OBJ RLBACK.OBJ RLDIALG.OBJ
  24.         BLINKER FILE $(objs) OUTPUT $@
  25.  
  26.