]> code.delx.au - gnu-emacs-elpa/blob - Makefile
Initial import
[gnu-emacs-elpa] / Makefile
1 EMACS ?= emacs
2 RM ?= rm
3 ELC = gobject-align.elc gobject-snippet.elc gobject-minor-mode.elc
4
5 all: $(ELC)
6
7 %.elc: %.el
8 $(EMACS) -Q -batch --eval "(setq load-path (cons nil load-path))" \
9 -f batch-byte-compile $<
10
11 clean:
12 $(RM) -rf $(ELC)