git clone http://danamlund/git/emacs-makefile-runner/.git
Log | Files | Refs | README

README.md (531B)


      1 emacs-makefile-runner
      2 =====================
      3 
      4 http://danamlund.dk/emacs/make-runner.html
      5 
      6 Searches for Makefile and fetches targets
      7 
      8 An easy method of running Makefiles. The function searches current and
      9 parent directories for a Makefile, fetches targets, and asks the user
     10 which of the targets to run.
     11 
     12 Save makefile-runner.el to your load path and add the following to
     13 your .emacs file:
     14 
     15     (require 'makefile-runner)
     16 
     17 You can add a keybinding to run the function, for example:
     18 
     19     (global-set-key (kbd "F11") 'makefile-runner)