File: Makefile

package info (click to toggle)
emacs-tablist 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: lisp: 1,979; makefile: 21
file content (19 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
EMACS ?= emacs
# Handle the mess when inside Emacs.
unexport INSIDE_EMACS		#cask not like this.
ifeq ($(EMACS), t)
EMACS = emacs
endif

emacs = $(EMACS)

all: package

byte-compile:
	cask exec $(emacs) --batch -L lisp -f batch-byte-compile *.el

package:
	cask package
clean:
	rm -rf dist
	rm -f -- *.elc