summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorPiotr Krysik <perper@o2.pl>2009-04-07 17:25:12 +0200
committerPiotr Krysik <perper@o2.pl>2009-04-07 17:25:12 +0200
commitf0457b0b5888fd4d652531b987c9d113e8d1234a (patch)
tree587b254996a2259ef0db0f3a135d01e19ef7a8f0 /bootstrap
parent39a50c763240da578a05a6b651776804786d813a (diff)
New empty gsm-receiver signal block with its own library - compiles
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap72
1 files changed, 25 insertions, 47 deletions
diff --git a/bootstrap b/bootstrap
index 3ef4692..525a6b0 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,51 +1,29 @@
-#! /bin/bash
+#!/bin/sh
+
+# Copyright 2001,2005 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
-DIE=0
-touch README NEWS CHANGELOG
-(autoconf --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "You must have autoconf installed."
- DIE=1
-}
-
-# libtool --version check not done...
-
-(automake --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "You must have automake installed."
- DIE=1
-}
-
-if test "$DIE" -eq 1; then
- exit 1
-fi
-
-echo Removing old files...
-rm -fr config.cache autom4te*.cache config.h config.status aclocal.m4 config.cache config.log
-
-if test ! -d config; then
- mkdir config
-fi
-echo "aclocal -I config"
aclocal -I config
-if test $? -ne 0; then
- exit 1
-fi
-echo "autoheader"
+autoconf
autoheader
-if test $? -ne 0; then
- exit 1
-fi
-
-echo "libtoolize --automake"
libtoolize --automake
-automake --add-missing -c -f -Wno-portability
-if test $? -ne 0; then
- exit 1
-fi
-
-echo "autoconf"
-autoconf
-echo "BOOTSTRAP complete"
-
-#(cd gsm-tvoid ; ./bootstrap) \ No newline at end of file
+automake --add-missing
personal git repositories of Harald Welte. Your mileage may vary