TODO update.
[clon.git] / Makefile.cnf
blob28889390e424bee6411bfb6010bac92ccaf0ada3
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 # Programs for generating the documentation:
45 MAKEINFO = makeinfo
46 TEXI2DVI = texi2dvi
47 DVIPS    = dvips
48 CONVERT  = convert
51 ### Makefile.cnf ends here