-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
48 lines (34 loc) · 887 Bytes
/
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
#
# Makefile for SEMI kernel.
#
PACKAGE = semi
API = 1.14
RELEASE = 6
FLIM_API= 1.14
TAR = tar
RM = /bin/rm -f
CP = /bin/cp -p
EMACS = emacs
XEMACS = xemacs
FLAGS = -batch -q -no-site-file -l SEMI-MK
PREFIX = NONE
LISPDIR = NONE
PACKAGEDIR = NONE
VERSION_SPECIFIC_LISPDIR = NONE
PACKAGE_LISPDIR = package-user-dir
GOMI = *.elc
VERSION = $(API).$(RELEASE)
ARC_DIR_PREFIX = /home/kanji/tomo/public_html/comp/emacsen/lisp
ARC_DIR = $(ARC_DIR_PREFIX)/semi/semi-$(API)-for-flim-$(FLIM_API)
elc:
$(EMACS) $(FLAGS) -f compile-semi $(PREFIX) $(LISPDIR) \
$(VERSION_SPECIFIC_LISPDIR) $(PACKAGE_LISPDIR)
install-elc: elc
$(EMACS) $(FLAGS) -f install-semi $(PREFIX) $(LISPDIR) \
$(VERSION_SPECIFIC_LISPDIR) $(PACKAGE_LISPDIR)
install: install-elc
clean:
-$(RM) $(GOMI)
release:
-$(RM) $(ARC_DIR)/$(PACKAGE)-$(VERSION).tar.gz
mv /tmp/$(PACKAGE)-$(VERSION).tar.gz $(ARC_DIR)