File: GNUmakefile

package info (click to toggle)
org-bullets 0.2.4%2Bgit20200318.767f55f-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: lisp: 160; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
######################################################################
#                            GNU MAKEFILE                            #
######################################################################

# clear out suffix list
.SUFFIXES:

EMACS = emacs
ELC = $(EMACS) -Q -batch -L .
EFLAGS =

######################################################################
### Rules
######################################################################
.PHONY: org-bullets clean test-run
# define main goal of make

org-bullets: org-bullets.elc

%.elc: %.el
	$(ELC) -f batch-byte-compile $<

test-run: org-bullets
	$(EMACS) -Q -l org-bullets.el $(EFLAGS) README.org

clean:
	-rm *.elc