forked from tsdh/iedit
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathMakefile
56 lines (38 loc) · 1.08 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# makefile for iedit.
# Emacs invocation
EMACS_COMMAND := emacs
EMACS := $(EMACS_COMMAND) -Q -batch
EVAL := $(EMACS) --eval
PKGDIR := .
# Additional emacs loadpath
LOADPATH := -L .
# Files to compile
EL := $(sort $(wildcard iedit*.el))
# Compiled files
ELC := $(EL:.el=.elc)
.PHONY: clean autoloads batch-compile install uninstall
all: clean autoloads batch-compile
$(ELC): %.elc: %.el
$(EMACS) $(LOADPATH) -f batch-byte-compile $<
# Compile needed files
compile: $(ELC)
# Compile all files at once
batch-compile:
$(EMACS) $(LOADPATH) -f batch-byte-compile $(EL)
# Remove all generated files
clean:
rm -f $(ELC)
# Make autoloads file
autoloads:
$(EVAL) "(progn (setq generated-autoload-file (expand-file-name \"iedit-autoloads.el\" \"$(PKGDIR)\")) \
(setq backup-inhibited t) (update-directory-autoloads \"$(PKGDIR)\"))"
PREFIX=/usr/local/share/
DESTDIR=${PREFIX}emacs/site-lisp/iedit/
install:
test -d ${DESTDIR} || mkdir ${DESTDIR}
cp -vf *.el $(DESTDIR)
cp -vf *.elc $(DESTDIR)
cp -vf iedit-autoloads.el $(DESTDIR)
uninstall:
rm -vf ${DESTDIR}*.elc
rm -vf ${DESTDIR}*.el