home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / automa.zip / COMMON.RMK < prev    next >
Text File  |  1993-07-05  |  396b  |  21 lines

  1. // COMMON.RMK - Contains commands used in common by multiple applications.
  2.  
  3. // have AUTOMAKE create _OBJS macro
  4. AUTOMAKE = _OBJS
  5.  
  6. // Clipper compiler switches
  7. CLP = /l /m /n /p /w
  8.  
  9. // Clipper inference rule
  10. .prg.obj:
  11.     set CLIPPERCMD=$(CLP)
  12.     Clipper $<
  13.     echo  
  14.  
  15. // RMAKE search paths
  16. makepath[.prg] = ".;util"
  17. makepath[.ch] = $(INCLUDE)
  18.  
  19. // link script file
  20. SCRIPT = Temp.lnk
  21.