dotemacs

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

Makefile (305B)


      1 EMACS ?= emacs
      2 # Handle the mess when inside Emacs.
      3 unexport INSIDE_EMACS		#cask not like this.
      4 ifeq ($(EMACS), t)
      5 EMACS = emacs
      6 endif
      7 
      8 emacs = $(EMACS)
      9 
     10 all: package
     11 
     12 byte-compile:
     13 	cask exec $(emacs) --batch -L lisp -f batch-byte-compile *.el
     14 
     15 package:
     16 	cask package
     17 clean:
     18 	rm -rf dist
     19 	rm -f -- *.elc