[2696] | 1 | ######################################################################################## |
---|
| 2 | # |
---|
| 3 | # KPP - The Kinetic PreProcessor |
---|
| 4 | # Builds simulation code for chemical kinetic systems |
---|
| 5 | # |
---|
| 6 | # Copyright (C) 1995-1996 Valeriu Damian and Adrian Sandu |
---|
| 7 | # Copyright (C) 1997-2004 Adrian Sandu |
---|
| 8 | # |
---|
| 9 | # KPP is free software; you can redistribute it and/or modify it under the |
---|
| 10 | # terms of the GNU General Public License as published by the Free Software |
---|
| 11 | # Foundation (http://www.gnu.org/copyleft/gpl.html); either version 2 of the |
---|
| 12 | # License, or (at your option) any later version. |
---|
| 13 | # |
---|
| 14 | # KPP is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 15 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
---|
| 16 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
---|
| 17 | # details. |
---|
| 18 | # |
---|
| 19 | # You should have received a copy of the GNU General Public License along |
---|
| 20 | ## with this program; if not, consult http://www.gnu.org/copyleft/gpl.html or |
---|
| 21 | # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
| 22 | # Boston, MA 02111-1307, USA. |
---|
| 23 | # |
---|
| 24 | # Adrian Sandu |
---|
| 25 | # Computer Science Department |
---|
| 26 | # Virginia Polytechnic Institute and State University |
---|
| 27 | # Blacksburg, VA 24060 |
---|
| 28 | # E-mail: sandu@cs.vt.edu |
---|
| 29 | # |
---|
| 30 | ####################################################################################### |
---|
| 31 | |
---|
| 32 | include Makefile.defs |
---|
| 33 | |
---|
| 34 | all: setup kpp |
---|
| 35 | |
---|
| 36 | setup: |
---|
| 37 | @./cflags.guess $(CC) |
---|
| 38 | |
---|
| 39 | kpp: |
---|
| 40 | @cd src;make;cd .. |
---|
| 41 | |
---|
| 42 | clean: |
---|
| 43 | @cd src;make clean;cd .. |
---|
| 44 | @rm -f *~ */*~ |
---|
| 45 | |
---|
| 46 | distclean: clean |
---|
| 47 | @cd src;make maintainer-clean;cd .. |
---|
| 48 | @rm -f bin/kpp |
---|