Add missing eval-when clause.
[clon.git] / Makefile.inc
blob24af43f923a49d433b89baf490d3cfda20de656b
1 ### Makefile.inc --- Inclusion part
3 ## Copyright (C) 2010 Didier Verna
5 ## Author:        Didier Verna <didier@lrde.epita.fr>
6 ## Maintainer:    Didier Verna <didier@lrde.epita.fr>
7 ## Created:       Tue Jun  2 17:48:53 2009
8 ## Last Revision: Sat Jun 12 17:53:10 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 PERL := perl
35 SHARE := $(PREFIX)/share
37 W3DIR := $(HOME)/www/software/lisp/clon
39 SBCL_CACHE  := sbcl
40 SBCL_BINLOC := sbcl
41 SBCL_DUMP   := --disable-ldb --lose-on-corruption       \
42                --end-runtime-options --no-userinit --no-sysinit
43 SBCL_LOAD   := --load
45 CMUCL_CACHE  := cmu
46 CMUCL_BINLOC := cmu
47 CMUCL_DUMP   := -noinit -nositeinit
48 CMUCL_LOAD   := -load
50 CCL_CACHE  := clozure
51 CCL_BINLOC := openmcl
52 CCL_DUMP   := --no-init
53 CCL_LOAD   := --load
55 ECL_CACHE  := ecl
56 ECL_BINLOC := ecl
57 ECL_DUMP   := -norc
58 ECL_LOAD   := -load
60 $(TOP_DIR)/version.inc: $(TOP_DIR)/version.cl $(TOP_DIR)/com.dvlsoft.clon.asd
61         $($(LISP)_PATH) $($(LISP)_LOAD) $(TOP_DIR)/version.cl | tail -2 > $@
64 ### Makefile.inc ends here