blob: 41863cd4578bf3a5e7d01a0c0ff49e740a552fc0 (
plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#########################################################################
# #
# Objective Caml #
# #
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
# #
# Copyright 1997 Institut National de Recherche en Informatique et #
# en Automatique. All rights reserved. This file is distributed #
# under the terms of the GNU General Public License. #
# #
#########################################################################
# $Id$
include ../config/Makefile
# Files to install
FILES= caml-font.el caml-hilit.el caml.el camldebug.el \
inf-caml.el caml-compat.el caml-help.el caml-types.el \
caml-xemacs.el caml-emacs.el
# Where to install. If empty, automatically determined.
EMACSDIR=/usr/local/share/emacs/site-lisp
# Name of Emacs executable
EMACS=emacs
# Where to install ocamltags script
SCRIPTDIR = $(BINDIR)
# Command for byte-compiling the files
COMPILECMD=(progn \
(setq load-path (cons "." load-path)) \
(byte-compile-file "caml-xemacs.el") \
(byte-compile-file "caml-emacs.el") \
(byte-compile-file "caml.el") \
(byte-compile-file "inf-caml.el") \
(byte-compile-file "caml-help.el") \
(byte-compile-file "caml-types.el") \
(byte-compile-file "camldebug.el"))
install:
@if test "$(EMACSDIR)" = ""; then \
set xxx `($(EMACS) --batch --eval "(mapcar 'print load-path)") \
2>/dev/null | \
sed -n -e '/\/site-lisp/s/"//gp'`; \
if test "$$2" = ""; then \
echo "Cannot determine Emacs site-lisp directory"; \
exit 2; \
fi; \
$(MAKE) EMACSDIR="$$2" simple-install; \
else \
$(MAKE) simple-install; \
fi
# install the .el files, but do not compile them.
install-el:
$(MAKE) NOCOMPILE=true install
simple-install:
@echo "Installing in $(EMACSDIR)..."
if test -d $(EMACSDIR); then : ; else mkdir -p $(EMACSDIR); fi
cp $(FILES) $(EMACSDIR)
if [ -z "$(NOCOMPILE)" ]; then \
cd $(EMACSDIR); $(EMACS) --batch --eval '$(COMPILECMD)'; \
fi
ocamltags: ocamltags.in
sed -e 's:@EMACS@:$(EMACS):' ocamltags.in >ocamltags
chmod a+x ocamltags
install-ocamltags: ocamltags
cp ocamltags $(SCRIPTDIR)/ocamltags
clean:
rm -f ocamltags *~ #*#
|