File: Makefile

package info (click to toggle)
emacs-doom-themes 2.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,240 kB
  • sloc: lisp: 14,017; makefile: 12
file content (12 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
all: compile test

compile:
	@emacs -batch -L . -L themes/ -f batch-byte-compile *.el themes/*.el

test:
	@emacs -batch -L . -L themes/ -l test/test-helper.el test/*-test.el

clean:
	@rm -vf *.elc themes/*.elc *-autoloads.el *~

.PHONY: test