]> git.gag.com Git - debian/gnuradio/blob - usrp2/firmware/config/grc_usrp2_firmware.m4
Fixes ticket:297. Refactors how usrp2/firmware is built. Now
[debian/gnuradio] / usrp2 / firmware / config / grc_usrp2_firmware.m4
1 dnl Copyright 2008 Free Software Foundation, Inc.
2 dnl 
3 dnl This file is part of GNU Radio
4 dnl 
5 dnl GNU Radio is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; either version 3, or (at your option)
8 dnl any later version.
9 dnl 
10 dnl GNU Radio is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 dnl GNU General Public License for more details.
14 dnl 
15 dnl You should have received a copy of the GNU General Public License
16 dnl along with GNU Radio; see the file COPYING.  If not, write to
17 dnl the Free Software Foundation, Inc., 51 Franklin Street,
18 dnl Boston, MA 02110-1301, USA.
19
20 AC_DEFUN([GRC_USRP2_FIRMWARE],[
21     dnl we use  --enable-usrp2-firmware to enable this
22     GRC_ENABLE(usrp2-firmware)
23
24     GRC_CHECK_DEPENDENCY(usrp2-firmware, usrp2)
25
26     AC_REQUIRE([AC_PROG_CC])
27     AC_REQUIRE([AC_PROG_CPP])
28     AC_REQUIRE([AC_PROG_RANLIB])
29
30
31     AC_CHECK_HEADERS(arpa/inet.h netinet/in.h byteswap.h)
32     AC_C_BIGENDIAN
33
34     dnl If execution gets to here, $passed will be:
35     dnl   with : if the --with code didn't error out
36     dnl   yes  : if the --enable code passed muster and all dependencies are met
37     dnl   no   : otherwise
38     if test $passed = yes; then
39
40         dnl Only do firmware if mb-gcc can be found
41         AC_CHECK_PROG([MB_GCC],[mb-gcc],[yes],[no])
42         if test $MB_GCC = no; then
43             AC_MSG_RESULT([usrp2 firmware requires mb-gcc.  Not found])
44             passed=no
45         fi
46     fi
47     if test $passed != with; then
48         dnl how and where to find INCLUDES and LA
49         dnl USRP2_INCLUDES="-I\${abs_top_srcdir}/usrp2/host/include \
50         dnl     -I\${abs_top_srcdir}/usrp2/firmware/include"
51         dnl USRP2_LA="\${abs_top_builddir}/usrp2/host/lib/libusrp2.la"
52         :
53     fi
54
55     dnl Include the usrp2 INCLUDES and LA
56     dnl AC_SUBST(USRP2_INCLUDES)
57     dnl AC_SUBST(USRP2_LA)
58
59     AC_CONFIG_FILES([ \
60         apps/Makefile \
61         include/Makefile \
62         lib/Makefile \
63     ])
64
65     dnl Slightly non-standard:  we handle this with an AM_CONDITIONAL
66     AM_CONDITIONAL(BUILDING_USRP2_FIRMWARE, [test $passed = yes && test "$enable_usrp2_firmware" != no])
67
68     GRC_BUILD_CONDITIONAL(usrp2-firmware)
69 ])