1 | # -*- sh -*- |
---|
2 | ############################################################################## |
---|
3 | # |
---|
4 | # KPP - The Kinetic PreProcessor |
---|
5 | # Builds simulation code for chemical kinetic systems |
---|
6 | # |
---|
7 | # Copyright (C) 1995-1997 Valeriu Damian and Adrian Sandu |
---|
8 | # Copyright (C) 1997-2005 Adrian Sandu |
---|
9 | # |
---|
10 | # KPP is free software; you can redistribute it and/or modify it under the |
---|
11 | # terms of the GNU General Public License as published by the Free Software |
---|
12 | # Foundation (http://www.gnu.org/copyleft/gpl.html); either version 2 of the |
---|
13 | # License, or (at your option) any later version. |
---|
14 | # |
---|
15 | # KPP is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
16 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
---|
17 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
---|
18 | # details. |
---|
19 | # |
---|
20 | # You should have received a copy of the GNU General Public License along |
---|
21 | ## with this program; if not, consult http://www.gnu.org/copyleft/gpl.html or |
---|
22 | # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
23 | # Boston, MA 02111-1307, USA. |
---|
24 | # |
---|
25 | # Adrian Sandu |
---|
26 | # Computer Science Department |
---|
27 | # Virginia Polytechnic Institute and State University |
---|
28 | # Blacksburg, VA 24060 |
---|
29 | # E-mail: sandu@cs.vt.edu |
---|
30 | # |
---|
31 | ############################################################################## |
---|
32 | |
---|
33 | # In order to compile KPP you have to provide the following information: |
---|
34 | |
---|
35 | # 1. The name of the compiler you want to use. Normaly this |
---|
36 | # is either GNU C compiler (gcc) or the native compiler (cc) |
---|
37 | # You can use the complete pathname if the compiler is not in $PATH |
---|
38 | # Note that for SUN machines is better to use gcc. |
---|
39 | # For GNU C compiler use: |
---|
40 | # CC=gcc |
---|
41 | # For the native compiler use: |
---|
42 | # CC=cc |
---|
43 | |
---|
44 | CC=cc |
---|
45 | |
---|
46 | # 2. The name of your lexical analizer. KPP requires FLEX to be used. |
---|
47 | # FLEX is a public domain lexical analizer and you can download it from |
---|
48 | # http://www.gnu.org/software/flex/ or any other mirror site. If flex |
---|
49 | # directory is not included in your path use the complete pathname. |
---|
50 | |
---|
51 | FLEX=flex |
---|
52 | |
---|
53 | # 3. The complete pathname of the FLEX library (libfl.a). |
---|
54 | # On many systems this is either: |
---|
55 | # /usr/lib, /usr/lib64, /usr/local/util/lib/flex |
---|
56 | |
---|
57 | FLEX_LIB_DIR=/usr/lib64 |
---|
58 | |
---|
59 | # 4. Platform independent C compiler flags. By default "-O" is used which |
---|
60 | # turns on optimization. If you are experiencing problems you may try |
---|
61 | # "-g" to include debuging informations. |
---|
62 | |
---|
63 | CC_FLAGS= -g -Wall |
---|
64 | |
---|
65 | # 5. Path to include additional directories |
---|
66 | # Typically: /usr/include on Linux |
---|
67 | # /usr/include/sys on Mac OS X |
---|
68 | INCLUDE_DIR = /usr/include |
---|
69 | |
---|
70 | ############################################################################## |
---|