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