File: Makefile

package info (click to toggle)
gnuplot-mode 1%3A0.8.1%2Bgit20230727.1.4c6b18f-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 464 kB
  • sloc: lisp: 5,195; makefile: 22
file content (21 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
EMACS ?= emacs

LOAD = -l gnuplot \
	-l gnuplot-context \
	-l gnuplot-debug-context \
	-l gnuplot-gui \
	-l gnuplot-tests \
	-l gnuplot-test-context

.PHONY: all default clean

default: compile

test:
	$(EMACS) -batch -L . $(LOAD) -f ert-run-tests-batch-and-exit

compile:
	$(EMACS) -batch -L . -f batch-byte-compile *.el

clean:
	rm -f *.elc