File: Makefile

package info (click to toggle)
git-annex-el 1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 76 kB
  • sloc: lisp: 125; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
elsrc=git-annex.el

all: $(elsrc:.el=.elc)

%.elc: %.el
	emacs -batch -q -no-site-file -eval '(byte-compile-file "$<")'

clean:
	-rm -f --verbose $(elsrc:.el=.elc)

.PHONY: all clean