dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

Makefile (358B)


      1 emacs ?= emacs
      2 # EMACS = emacs-24.3
      3 
      4 LOAD = -l avy.el -l avy-test.el
      5 
      6 .PHONY: all test clean checkdoc
      7 
      8 all: compile test checkdoc
      9 
     10 test:
     11 	$(emacs) -batch $(LOAD) -f ert-run-tests-batch-and-exit
     12 
     13 checkdoc:
     14 	$(emacs) -batch -l targets/checkdoc.el
     15 
     16 compile:
     17 	$(emacs) -batch -l targets/avy-init.el
     18 
     19 run:
     20 	$(emacs) -Q -l targets/avy-init.el
     21 
     22 clean:
     23 	rm -f *.elc