aboutsummaryrefslogtreecommitdiffhomepage
path: root/x-symbol
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2003-01-21 11:52:18 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2003-01-21 11:52:18 +0000
commit47c6f3de3df688df75eb96546991dd11393645c2 (patch)
tree12c00ddfc087fca2afbeb05963b99cb82e232a0a /x-symbol
parentf8ddf015913e9179f4ea94677b841777ffb435fa (diff)
Version 4.5 (beta?) sent by CW, as a package distrib.
Diffstat (limited to 'x-symbol')
-rw-r--r--x-symbol/etc/Makefile.emacs69
1 files changed, 69 insertions, 0 deletions
diff --git a/x-symbol/etc/Makefile.emacs b/x-symbol/etc/Makefile.emacs
new file mode 100644
index 00000000..8b22137e
--- /dev/null
+++ b/x-symbol/etc/Makefile.emacs
@@ -0,0 +1,69 @@
+### Makefile.emacs --- Emacs makefile for X-Symbol
+
+## Copyright (C) 2002 Free Software Foundation, Inc.
+
+## Author: Masayuki Ataka <ataka@milk.freemail.ne.jp>
+## Version: 4.4.X
+## Keywords: fonts, WYSIWYG, LaTeX, HTML, wp, math
+## X-URL: http://x-symbol.sourceforge.net/
+## X-URL: http://isweb22.infoseek.co.jp/computer/pop-club/emacs/TeX.html
+
+# Minor changes by Christoph Wedler <wedler@users.sourceforge.net>
+
+# This software is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the
+# Free Software Foundation; either version 2, or (at your option) any
+# later version.
+
+# This software is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+# for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with This software; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+PACKAGE = x-symbol
+
+EMACS = emacs
+EFLAG = -q --no-site-file --batch
+PREFIX = /usr/local
+LISPDIR = $(PREFIX)/share/emacs/site-lisp/$(PACKAGE)
+DATADIR = $(PREFIX)/share/emacs/etc/$(PACKAGE)
+INFODIR = $(PREFIX)/info
+
+RM = rm -f
+CP = cp
+MKDIR = mkdir -p
+
+all: elc
+install: install-el install-etc install-info
+
+install-el:
+ if test ! -d $(LISPDIR); then \
+ $(MKDIR) $(LISPDIR); \
+ fi
+ $(CP) lisp/$(PACKAGE)/* $(LISPDIR)
+
+install-etc:
+ if test ! -d $(DATADIR); then \
+ $(MKDIR) $(DATADIR); \
+ fi
+ $(CP) -r etc/$(PACKAGE)/* $(DATADIR);
+
+install-info:
+ if test ! -d $(INFODIR); then \
+ $(MKDIR) $(INFODIR); \
+ fi
+ $(CP) -r info/* $(INFODIR);
+
+elc: clean
+ cd lisp/$(PACKAGE)/; $(EMACS) $(EFLAG) --directory "./" -l "auto-autoloads.el" -f batch-byte-compile *.el
+
+clean:
+ $(RM) *~
+ cd lisp/$(PACKAGE)/; $(RM) *.elc
+
+distclean: clean