Reindent output/face.lisp.
[clon.git] / Makefile.cnf
blob9ee2b5d0be6d67ed92bbda84fefa40ba21e13d1b
1 ### Makefile.cnf --- User level configuration
3 ## Copyright (C) 2010, 2011 Didier Verna
5 ## Author:        Didier Verna <didier@lrde.epita.fr>
6 ## Maintainer:    Didier Verna <didier@lrde.epita.fr>
8 ## This file is part of Clon.
10 ## Permission to use, copy, modify, and distribute this software for any
11 ## purpose with or without fee is hereby granted, provided that the above
12 ## copyright notice and this permission notice appear in all copies.
14 ## THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
15 ## WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
16 ## MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
17 ## ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
18 ## WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
19 ## ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
20 ## OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 ### Commentary:
25 ## Contents management by FCM version 0.1.
28 ### Code:
30 # Installation prefix. This is used for installing Clon as follows:
31 # - $(PREFIX)/share/common-lisp/systems/ for the system file (ASDF 1)
32 # - $(PREFIX)/share/doc/clon/ for the PDF documentation
33 # - $(PREFIX)/share/info/ for the info documentation
34 # If any of these are unsatisfactory, you will need to edit the Makefiles, or
35 # do the installation by hand.
36 PREFIX := /usr/local
38 # C compiler configuration for sb-grovel and cffi-grovel.
39 CC := gcc
41 # Preferred Common Lisp implementation.
42 # Choices are SBCL, CMUCL, CCL, ECL, CLISP and ABCL.
43 LISP := SBCL
45 # Implementation paths. Note that regardless of the above setting, SBCL is
46 # required in order to generate the reference manual, so you must set
47 # SBCL_PATH properly. If you don't have SBCL installed at all, set it to
48 # nothing.
49 SBCL_PATH  := CC=$(CC) sbcl
50 CMUCL_PATH := lisp
51 CCL_PATH   := ccl
52 ECL_PATH   := ecl
53 # -q is needed to remove 'bye' for version.cl to work properly.
54 CLISP_PATH := CC=$(CC) clisp -q
56 # For ABCL, we need something slightly different.
57 ABCL_JAR   := /usr/local/src/common-lisp/abcl/dist/abcl.jar
58 JAVA       := java
59 JAVAC      := javac
60 JAR        := jar
61 SED        := sed
62 ABCL_PATH  := abcl
65 # Programs for generating the documentation:
66 MAKEINFO = makeinfo
67 TEXI2DVI = texi2dvi
68 DVIPS    = dvips
69 CONVERT  = convert
72 ### Makefile.cnf ends here