Statistics
| Branch: | Tag: | Revision:

root / gr-run-waveform / configure.ac @ c31f12f2

History | View | Annotate | Download (1.4 kB)

1
dnl 
2
dnl  Copyright 2004,2005,2007,2008,2009 Free Software Foundation, Inc.
3
dnl  
4
dnl  This file is part of GNU Radio
5
dnl  
6
dnl  GNU Radio is free software; you can redistribute it and/or modify
7
dnl  it under the terms of the GNU General Public License as published by
8
dnl  the Free Software Foundation; either version 3, or (at your option)
9
dnl  any later version.
10
dnl  
11
dnl  GNU Radio is distributed in the hope that it will be useful,
12
dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
dnl  GNU General Public License for more details.
15
dnl  
16
dnl  You should have received a copy of the GNU General Public License
17
dnl  along with GNU Radio; see the file COPYING.  If not, write to
18
dnl  the Free Software Foundation, Inc., 51 Franklin Street,
19
dnl  Boston, MA 02110-1301, USA.
20
dnl 
21
22
AC_INIT
23
AC_PREREQ(2.57)
24
AC_CONFIG_AUX_DIR([.])	
25
26
AC_CONFIG_HEADERS([grconfig.h])
27
AC_CONFIG_MACRO_DIR (config)
28
AC_CONFIG_SRCDIR(run_waveform.cc)
29
AM_INIT_AUTOMAKE("run-waveform", "0.1")
30
31
AC_CANONICAL_BUILD
32
AC_CANONICAL_HOST
33
dnl AC_CANONICAL_TARGET
34
35
dnl Find the the C++ compiler
36
AC_PROG_CXX
37
38
dnl Checks for standard header files.
39
AC_HEADER_STDC
40
41
dnl Get the paths to the Guile headers and library
42
GUILE_DEVEL
43
44
AC_CONFIG_FILES([\
45
	  Makefile \
46
	])
47
48
AC_OUTPUT
49
50
echo "Configured gr-run-waveform release $RELEASE for build."