~ubuntu-branches/ubuntu/wily/ess/wily-proposed

« back to all changes in this revision

Viewing changes to Makeconf

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2014-09-13 09:03:04 UTC
  • mfrom: (1.2.33)
  • Revision ID: package-import@ubuntu.com-20140913090304-ckjf1ajwpap2h1ny
Tags: 14.09-1
New upstream version released today 

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
## Variable        Description
11
11
## EMACS           use emacs for GNU Emacs, xemacs for XEmacs
12
12
## EMACSBATCH      emacs/xemacs command for compiling elisp files
 
13
## SITELISP        Destination of site-lisp; but some variants have no site-lisp
13
14
## LISPDIR         Destination of compiled elisp files
14
15
## INFODIR         Destination of info files
15
16
## ETCDIR          Destination of script and icon files
16
 
## PREFIX(DESTDIR) Directory prepended to LISPDIR, INFODIR, DOCDIR & ETCDIR
17
 
##                 Specify either PREFIX or DESTDIR to over-ride /usr/local
 
17
## PREFIX(DESTDIR) Directory prepended to SITELISP, INFODIR, DOCDIR & ETCDIR
 
18
##                 Specify either PREFIX or DESTDIR to over-ride /usr
18
19
DESTDIR=/usr
19
20
PREFIX=$(DESTDIR)
20
 
#
 
21
 
21
22
##__ GNU Emacs __
22
23
EMACS=emacs
23
24
SITELISP=$(PREFIX)/share/emacs/site-lisp
27
28
 
28
29
##__ XEmacs __
29
30
#EMACS=$(PREFIX)/bin/xemacs
30
 
#LISPDIR=$(PREFIX)/share/xemacs/site-packages/lisp/ess
 
31
#SITELISP=$(PREFIX)/share/xemacs/site-packages/lisp
 
32
#LISPDIR=$(SITELISP)/ess
31
33
#INFODIR=$(PREFIX)/share/xemacs/site-packages/info
32
34
#ETCDIR =$(PREFIX)/share/xemacs/site-packages/etc/ess
33
 
#
34
35
 
35
36
##__ GNU Emacs __  for Mac OS X with NeXTstep (Cocoa or GNUstep)
36
 
#PREFIX=/Applications/Emacs.app/Contents/Resources
37
 
#EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs
38
 
#LISPDIR=$(PREFIX)/site-lisp/ess
39
 
#INFODIR=/usr/local/info
40
 
#ETCDIR =$(PREFIX)/etc/ess
41
 
#
 
37
# PREFIX=/Applications/Emacs.app/Contents/Resources
 
38
# EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs
 
39
# SITELISP=$(PREFIX)/site-lisp
 
40
# LISPDIR=$(SITELISP)/ess
 
41
# INFODIR=/usr/local/info
 
42
# ETCDIR =$(PREFIX)/etc/ess
42
43
 
43
44
##__ Aquamacs __  (donated by Dan Knoepfle, Mar 26, 2011)
44
 
#PREFIX=/Applications/Aquamacs.app/Contents/Resources/lisp/aquamacs/edit-modes
45
 
#EMACS=/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
46
 
#LISPDIR=$(PREFIX)/ess-mode/lisp
47
 
#INFODIR=/usr/local/info
48
 
#ETCDIR=$(PREFIX)/ess-mode/etc
49
 
#
 
45
# PREFIX=/Applications/Aquamacs.app/Contents/Resources/lisp/aquamacs/edit-modes
 
46
# EMACS=/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
 
47
# SITELISP=/Applications/Aquamacs.app/Contents/Resources/lisp
 
48
# LISPDIR=$(PREFIX)/ess-mode/lisp
 
49
# INFODIR=/Applications/Aquamacs.app/Contents/Resources/info
 
50
# ETCDIR=$(PREFIX)/ess-mode/etc
50
51
 
51
52
## the following command is the same for recent versions of both Emacs and XEmacs
52
53
EMACSBATCH = $(EMACS) -batch -no-site-file -no-init-file
64
65
##                 1st) source-file & 2nd) target-directory
65
66
## UNINSTALL       deletes all arguments
66
67
## DOCDIR          Destination of other doc files
67
 
#
 
68
 
68
69
SHELL = /bin/sh
69
 
#
 
70
 
70
71
MAKEINFO = LC_ALL=C LANG=en makeinfo
71
72
# new:  MAKEHTML <output>.html  <input>.texi  {necessary to build 'Index'}
72
73
MAKEHTML = $(MAKEINFO) --html --no-split --css-include=atouchofstyle.css -o
73
74
##                            ^^^^^^^^^^ today's bandwidth is fast
74
75
#MAKETXT  = $(MAKEINFO) --no-validate --no-headers --no-split -o -
75
76
MAKETXT  = $(MAKEINFO) --no-validate --plaintext --no-split -o -
76
 
#
77
 
INSTALLDIR = install -d
78
 
#INSTALLDIR = mkdir -p
79
 
#
 
77
 
 
78
INSTALLDIR = mkdir -p
 
79
#INSTALLDIR = install -d
 
80
 
80
81
INSTALL = cp -p
81
82
#INSTALL = install
82
 
#
 
83
 
83
84
UNINSTALL = rm -f
84
 
#
 
85
 
85
86
DOCDIR=$(PREFIX)/share/doc/ess
86
87
 
87
88
## Section 3