File: Makefile

package info (click to toggle)
dired-du 0.5.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: lisp: 2,450; makefile: 12
file content (16 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
emacs ?= emacs

LOAD = -l dired-du.el

all: test

test:
	$(emacs) -batch $(LOAD) -l dired-du-tests.el -f ert-run-tests-batch-and-exit

compile:
	$(emacs) -batch --eval "(progn (add-to-list 'load-path default-directory) (byte-compile-file \"dired-du.el\"))"

clean:
	rm -f *.elc

.PHONY: all compile clean test