| 1 : |
jwilke
|
1.1
|
# Procedures to build gforth from the CVS sources |
| 2 : |
anton
|
1.3
|
|
| 3 : |
anton
|
1.11
|
#use this with parameters and env variables like "configure" |
| 4 : |
|
|
|
| 5 : |
anton
|
1.28
|
#Copyright (C) 2000,2002,2003,2006,2007,2008 Free Software Foundation, Inc. |
| 6 : |
anton
|
1.3
|
|
| 7 : |
|
|
#This file is part of Gforth. |
| 8 : |
|
|
|
| 9 : |
|
|
#Gforth is free software; you can redistribute it and/or |
| 10 : |
|
|
#modify it under the terms of the GNU General Public License |
| 11 : |
anton
|
1.22
|
#as published by the Free Software Foundation, either version 3 |
| 12 : |
anton
|
1.3
|
#of the License, or (at your option) any later version. |
| 13 : |
|
|
|
| 14 : |
|
|
#This program 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. |
| 18 : |
|
|
|
| 19 : |
|
|
#You should have received a copy of the GNU General Public License |
| 20 : |
anton
|
1.22
|
#along with this program. If not, see http://www.gnu.org/licenses/. |
| 21 : |
anton
|
1.3
|
|
| 22 : |
|
|
|
| 23 : |
jwilke
|
1.1
|
# created: 2may00jaw |
| 24 : |
|
|
|
| 25 : |
jwilke
|
1.6
|
# To build gforth from scratch you need autoconf, automake and a |
| 26 : |
anton
|
1.17
|
# gforth-0.6.2 |
| 27 : |
jwilke
|
1.1
|
|
| 28 : |
anton
|
1.27
|
./autogen.sh && |
| 29 : |
anton
|
1.19
|
./configure "$@" && |
| 30 : |
pazsan
|
1.23
|
echo Running: make && |
| 31 : |
|
|
make && |
| 32 : |
|
|
make doc && |
| 33 : |
|
|
make more |