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

  1. //
  2. //  PE.RMK
  3. //
  4. //  Make file for PE, Clipper simple program editor.
  5. //
  6. //  Copyright (c) 1991-1995, Computer Associates International, Inc.
  7. //  All rights reserved.
  8. //
  9.  
  10. // Define comma separated obj list as a macro
  11. objs=PE
  12.  
  13. // Inference rule for compiling (.prg) to .obj files
  14. .prg.obj:
  15.     CLIPPER $< /m /n /w
  16.  
  17. // Dependancy statements for .obj file
  18. PE.OBJ: .\PE.PRG
  19.  
  20. // Dependancy rule for linking .obj file to .EXE file
  21. PE.EXE: PE.OBJ
  22.         BLINKER FILE $(objs) OUTPUT $@
  23.  
  24.