New tag Make target.
[clon.git] / Makefile.cnf
blobeb52aeffa2362788896e2c9bc18ba546993e7714
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: Sat Jun 12 17:51:39 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.
34 # - ASDF file will be symlinked in $(PREFIX)/share/common-lisp/systems
35 # - Data will end up in $(PREFIX)/share/clon/
36 # - Documentation will end up in $(PREFIX)/share/doc/clon/
37 #                            and $(PREFIX)/share/info/
38 # If any of these are unsatisfactory, you will need to edit the Makefiles, or
39 # do the installation by hand.
40 PREFIX := /usr/local
42 # CC variable for sb-grovel:
43 CC = gcc
45 # Programs for generating the documentation:
46 MAKEINFO = makeinfo
47 TEXI2DVI = texi2dvi
48 DVIPS    = dvips
49 CONVERT  = convert
51 ### Makefile.cnf ends here