Bump version number to 1.0b15.
[clon.git] / Makefile.cnf
blobb4089732672c057a02c94f4fcce02e1c30008ba1
1 ### Makefile.cnf --- User level configuration
3 ## Copyright (C) 2010 Didier Verna
5 ## Author:        Didier Verna <didier@lrde.epita.fr>
6 ## Maintainer:    Didier Verna <didier@lrde.epita.fr>
7 ## Created:       Sun May 31 17:18:34 2009
8 ## Last Revision: Wed Sep 29 17:38:20 2010
10 ## This file is part of Clon.
12 ## Clon is free software; you can redistribute it and/or modify
13 ## it under the terms of the GNU General Public License version 3,
14 ## as published by the Free Software Foundation.
16 ## Clon is distributed in the hope that it will be useful,
17 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ## GNU General Public License for more details.
21 ## You should have received a copy of the GNU General Public License
22 ## along with this program; if not, write to the Free Software
23 ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 ### Commentary:
28 ## Contents management by FCM version 0.1.
31 ### Code:
33 # Installation prefix. This is used for installing Clon as follows:
34 # - $(PREFIX)/share/common-lisp/systems/ for the system file (ASDF 1)
35 # - $(PREFIX)/share/doc/clon/ for the PDF documentation
36 # - $(PREFIX)/share/info/ for the info documentation
37 # If any of these are unsatisfactory, you will need to edit the Makefiles, or
38 # do the installation by hand.
39 PREFIX := /usr/local
41 # CC variable for sb-grovel:
42 CC := gcc
44 # Lisp implementation to use (for some installation processing steps only):
45 # Choices are SBCL, CMUCL, CCL and ECL.
46 LISP := SBCL
48 # Implementation paths:
49 SBCL_PATH  := CC=$(CC) sbcl
50 CMUCL_PATH := lisp
51 CCL_PATH   := ccl
52 ECL_PATH   := ecl
55 # Programs for generating the documentation:
56 MAKEINFO = makeinfo
57 TEXI2DVI = texi2dvi
58 DVIPS    = dvips
59 CONVERT  = convert
62 ### Makefile.cnf ends here