X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gr-howto-write-a-block%2Fconfigure.ac;h=52c4639bb544c83b1281faa730845de8f96b431d;hb=refs%2Fheads%2Ftry-3.3.1;hp=c1a7c77feb18274fcb00d128a0ec7aa2c74e6bc0;hpb=ec73b08c2d615f1a151eb7af0037ca95b22f8585;p=debian%2Fgnuradio diff --git a/gr-howto-write-a-block/configure.ac b/gr-howto-write-a-block/configure.ac index c1a7c77f..52c4639b 100644 --- a/gr-howto-write-a-block/configure.ac +++ b/gr-howto-write-a-block/configure.ac @@ -1,5 +1,5 @@ dnl -dnl Copyright 2004,2005,2007,2008 Free Software Foundation, Inc. +dnl Copyright 2004,2005,2007,2008,2009 Free Software Foundation, Inc. dnl dnl This file is part of GNU Radio dnl @@ -19,10 +19,20 @@ dnl the Free Software Foundation, Inc., 51 Franklin Street, dnl Boston, MA 02110-1301, USA. dnl -AC_INIT(gr-howto-write-a-block,3.2svn) + +AC_INIT AC_PREREQ(2.57) AC_CONFIG_AUX_DIR([.]) +AC_CANONICAL_BUILD +AC_CANONICAL_HOST +AC_CANONICAL_TARGET + +GR_VERSION +dnl ustar required to have pathnames > 99 chars +_AM_SET_OPTION([tar-ustar]) +AM_INIT_AUTOMAKE(gr-howto-write-a-block,$RELEASE) + dnl This is kind of non-standard, but it sure shortens up this file :-) m4_include([config/gr_standalone.m4]) GR_STANDALONE @@ -59,21 +69,20 @@ dnl AX_BOOST_TEST_EXEC_MONITOR dnl AX_BOOST_UNIT_TEST_FRAMEWORK dnl AX_BOOST_WSERIALIZATION - -STD_DEFINES_AND_INCLUDES="$GNURADIO_CORE_CFLAGS" -AC_SUBST(STD_DEFINES_AND_INCLUDES) - AC_CONFIG_FILES([\ Makefile \ + apps/Makefile \ config/Makefile \ - doc/Makefile \ - src/Makefile \ - src/lib/Makefile \ - src/python/Makefile \ - src/python/run_tests \ + grc/Makefile \ + lib/Makefile \ + python/Makefile \ + python/run_tests \ + swig/Makefile \ ]) dnl run_tests is created from run_tests.in. Make it executable. -AC_CONFIG_COMMANDS([run_tests], [chmod +x src/python/run_tests]) +AC_CONFIG_COMMANDS([run_tests], [chmod +x python/run_tests]) AC_OUTPUT + +echo Configured gr-howto-write-a-block release $RELEASE for build.