Blame


1 56250a8f 2021-08-05 op EMACS = emacs
2 56250a8f 2021-08-05 op
3 56250a8f 2021-08-05 op .PHONY: compile clean
4 56250a8f 2021-08-05 op
5 56250a8f 2021-08-05 op compile: 9ps-mode.elc
6 56250a8f 2021-08-05 op
7 56250a8f 2021-08-05 op 9ps-mode.elc: 9ps-mode.el
8 56250a8f 2021-08-05 op
9 56250a8f 2021-08-05 op .SUFFIXES: .el .elc
10 56250a8f 2021-08-05 op .el.elc:
11 56250a8f 2021-08-05 op $(EMACS) -Q --batch -L . -f batch-byte-compile $<
12 56250a8f 2021-08-05 op
13 56250a8f 2021-08-05 op clean:
14 56250a8f 2021-08-05 op rm -f *.elc