File: Makefile

package info (click to toggle)
ggtags 0.9.0~git20220511.40635a1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 176 kB
  • sloc: lisp: 2,049; makefile: 10
file content (12 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all clean

ELCFILES = $(addsuffix .elc, $(basename $(wildcard *.el)))

all: $(ELCFILES)

%.elc : %.el
	@echo Compiling $<
	@emacs -batch -q -no-site-file -f batch-byte-compile $<

clean:
	@rm -f *.elc