diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-10-19 16:40:14 -0700 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-10-19 16:40:14 -0700 |
commit | eb95f431badf197b249131a3119a92bd5317621b (patch) | |
tree | 645854a7e1e6cf57fcae56f196a5d828b913555e /usrp2/firmware/configure.gnu | |
parent | e30b824e9165bff69f09121631c3d5a706cbbd39 (diff) |
Removed usrp(2) directories.
Diffstat (limited to 'usrp2/firmware/configure.gnu')
-rwxr-xr-x | usrp2/firmware/configure.gnu | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/usrp2/firmware/configure.gnu b/usrp2/firmware/configure.gnu deleted file mode 100755 index 53ca9b518a..0000000000 --- a/usrp2/firmware/configure.gnu +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -# -# wrapper to setup cross-compilation of firmware -# - -for v in CC CPP CXX AS AR NM RANLIB STRIP F77 CFLAGS CXXFLAGS CPPFLAGS LDFLAGS CCAS CCASFLAGS USB_LIBS USB_CFLAGS -do - unset $v -done - -args= -for t in "$@" -do - case "$t" in - (CC=*) ;; - (CPP=*) ;; - (CXX=*) ;; - (AR=*) ;; - (AS=*) ;; - (NM=*) ;; - (RANLIB=*) ;; - (STRIP=*) ;; - (F77=*) ;; - (FFLAGS=*) ;; - (CFLAGS=*) ;; - (CXXFLAGS=*) ;; - (CPPFLAGS=*) ;; - (LDFLAGS=*) ;; - (CCAS=*) ;; - (CCASFLAGS=*) ;; - (USB_CFLAGS=*) ;; - (USB_LIBS=*) ;; - (*) args="$args $t" ;; - esac -done - - -`dirname $0`/configure CFLAGS='-O2' $args --host=mb |