File: Makefile

package info (click to toggle)
ace-window 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 132 kB
  • sloc: lisp: 770; makefile: 15
file content (15 lines) | stat: -rw-r--r-- 244 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
emacs ?= emacs

update:
	$(emacs) -batch -l test/make-update.el

compile: clean
	$(emacs) -batch -l test/elpa.el -l test/make-compile.el

plain:
	$(emacs) -Q -l test/elpa.el -l test/make-plain

clean:
	rm -f *.elc

.PHONY: update compile clean