projects
/
makefiles.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
相互参照警告が解決できない時に警告メッセージを表示するよう動作を変更
[makefiles.git]
/
emacslisp_mk
/
Makefile
1
EMACS := emacs
2
3
COMPILE.el := $(EMACS) -batch -f batch-byte-compile
4
5
ELFILES := $(wildcard *.el)
6
ELCFILES := $(addsuffix c,$(ELFILES))
7
8
.PHONY: all install clean
9
10
all: $(ELCFILES)
11
12
install: all
13
14
%.elc: %.el
15
$(COMPILE.el) $<
16
17
clean:
18
$(RM) $(ELCFILES)