80 columns formatting fixes.
[clon.git] / Makefile.inc
blob97773934773761beabb60f9f7a62f42824d8ca64
1 ### Makefile.inc --- Inclusion part
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 ## Clon is free software; you can redistribute it and/or modify
11 ## it under the terms of the GNU General Public License version 3,
12 ## as published by the Free Software Foundation.
14 ## Clon is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ## GNU General Public License for more details.
19 ## You should have received a copy of the GNU General Public License
20 ## along with this program; if not, write to the Free Software
21 ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 ### Commentary:
26 ## Contents management by FCM version 0.1.
29 ### Code:
31 PERL := perl
33 SHARE := $(PREFIX)/share
35 W3DIR := $(HOME)/www/software/lisp/clon
37 SBCL_CACHE  := sbcl
38 SBCL_BINLOC := sbcl
39 SBCL_DUMP   := --disable-ldb --lose-on-corruption       \
40                --end-runtime-options --no-userinit --no-sysinit
41 SBCL_LOAD   := --load
43 CMUCL_CACHE  := cmu
44 CMUCL_BINLOC := cmu
45 CMUCL_DUMP   := -noinit -nositeinit
46 CMUCL_LOAD   := -load
48 CCL_CACHE  := ccl
49 CCL_BINLOC := openmcl
50 CCL_DUMP   := --no-init
51 CCL_LOAD   := --load
53 ECL_CACHE  := ecl
54 ECL_BINLOC := ecl
55 ECL_DUMP   := -norc
56 ECL_LOAD   := -load
58 CLISP_CACHE  := clisp
59 CLISP_BINLOC := clisp
60 CLISP_DUMP   := -norc
61 CLISP_LOAD   := -i
63 ABCL_CACHE  := abcl
64 ABCL_BINLOC := abcl
65 ABCL_DUMP   := --batch --eval '(defvar cl-user::com.dvlsoft.clon.dump t)'
66 ABCL_LOAD   := --load
68 $(TOP_DIR)/version.inc: $(TOP_DIR)/version.cl $(TOP_DIR)/com.dvlsoft.clon.asd
69         $($(LISP)_PATH) $($(LISP)_LOAD) $(TOP_DIR)/version.cl | tail -2 > $@
72 ### Makefile.inc ends here