6 lines
139 B
Makefile
6 lines
139 B
Makefile
|
.PHONY: all
|
||
|
all: appt-init.elc jabber-init.elc org-init.elc gnus-init.elc
|
||
|
|
||
|
%.elc: %.el
|
||
|
emacs -Q -batch -eval "(byte-compile-file \"$<\")"
|