diff options
author | Rob Savoye | 2010-11-25 11:02:19 -0700 |
---|---|---|
committer | Rob Savoye | 2010-11-25 11:02:19 -0700 |
commit | 2da40a7644375e13881105495f5848cfa45d471b (patch) | |
tree | 019f09a5699d8d047b181b6a864a107fc3a523b0 /gr-run-waveform/bootstrap | |
parent | ac0d67d4c394d6ac7738525afb4fcfd7f3e95fc0 (diff) | |
download | gnuradio-2da40a7644375e13881105495f5848cfa45d471b.tar.gz gnuradio-2da40a7644375e13881105495f5848cfa45d471b.tar.bz2 gnuradio-2da40a7644375e13881105495f5848cfa45d471b.zip |
add bootstrap file from howto
Diffstat (limited to 'gr-run-waveform/bootstrap')
-rwxr-xr-x | gr-run-waveform/bootstrap | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gr-run-waveform/bootstrap b/gr-run-waveform/bootstrap new file mode 100755 index 000000000..2412a7a82 --- /dev/null +++ b/gr-run-waveform/bootstrap @@ -0,0 +1,29 @@ +#!/bin/sh + +# Copyright 2001,2005,2008 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio 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; either version 3, or (at your option) +# any later version. +# +# GNU Radio 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 GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. + + +rm -fr config.cache autom4te*.cache + +aclocal -I config +autoconf +autoheader +libtoolize --automake -c -f +automake --add-missing -c -f -Wno-portability |