home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / languages / elisp / packages / rpc-hm-1.0 / Makefile < prev    next >
Encoding:
Makefile  |  1992-05-07  |  610 b   |  26 lines

  1. # Author: Eyvind Ness (eyvind) 
  2. # Date:      Friday, May 8 1992 06:23 GMT
  3. # File:      /usr/local/gnu/emacs/elisp/rpc-hm-1.0/Makefile
  4.  
  5. # srcs which other modules REQUIRE must be loaded first:
  6. # LIBSRC = -l bourne-cmd-string-input -l common-lisp-indent -l rpc-hm
  7. #
  8. # Not necessary when runing init first. init.el also sets up the correct
  9. # load-path:
  10. INIT= -l init.el -f _init
  11.  
  12. # Name of GNU Emacs executable to be used for compiling the elisp 
  13. # sources:
  14. EMACSX=emacs
  15.  
  16. all:
  17.     $(EMACSX) -batch -q $(INIT) -f _make
  18.  
  19. clean:
  20.     rm -f *.elc *~ core \#*
  21.  
  22. # Local Variables:
  23. # mode: Fundamental
  24. # write-file-hooks: nil
  25. # End:
  26.