Statistics
| Branch: | Tag: | Revision:

root / bootstrap @ a6890ef8

History | View | Annotate | Download (1.1 kB)

1 5d69a524 jcorgan
#!/bin/sh
2 5d69a524 jcorgan
3 28361a1b eb
# Copyright 2001,2005,2008 Free Software Foundation, Inc.
4 5d69a524 jcorgan
# 
5 5d69a524 jcorgan
# This file is part of GNU Radio
6 5d69a524 jcorgan
# 
7 5d69a524 jcorgan
# GNU Radio is free software; you can redistribute it and/or modify
8 5d69a524 jcorgan
# it under the terms of the GNU General Public License as published by
9 937b719d eb
# the Free Software Foundation; either version 3, or (at your option)
10 5d69a524 jcorgan
# any later version.
11 5d69a524 jcorgan
# 
12 5d69a524 jcorgan
# GNU Radio is distributed in the hope that it will be useful,
13 5d69a524 jcorgan
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14 5d69a524 jcorgan
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 5d69a524 jcorgan
# GNU General Public License for more details.
16 5d69a524 jcorgan
# 
17 5d69a524 jcorgan
# You should have received a copy of the GNU General Public License
18 5d69a524 jcorgan
# along with GNU Radio; see the file COPYING.  If not, write to
19 86f5c924 eb
# the Free Software Foundation, Inc., 51 Franklin Street,
20 86f5c924 eb
# Boston, MA 02110-1301, USA.
21 5d69a524 jcorgan
22 5d69a524 jcorgan
23 5d69a524 jcorgan
rm -fr config.cache autom4te*.cache
24 5d69a524 jcorgan
25 5d69a524 jcorgan
aclocal -I config
26 5d69a524 jcorgan
autoconf
27 5d69a524 jcorgan
autoheader
28 5d69a524 jcorgan
libtoolize --automake
29 28361a1b eb
automake --add-missing -Wno-portability -Wno-override -Wnone
30 28361a1b eb
#automake --add-missing -Wno-portability
31 0c2ee71b Eric Blossom
32 0c2ee71b Eric Blossom
# Run bootstrap in any subprojects
33 0c2ee71b Eric Blossom
(cd usrp2/firmware ; ./bootstrap)
34 1186ab98 Tom Rondeau
(cd volk ; ./bootstrap)