root/ossiedev/branches/mcarrick/embeddedBuild/configure.ac @ 10959

Revision 10959, 1.1 KB (checked in by mcarrick, 18 months ago)

removing USRP stuff

Line 
1AC_PREREQ([2.61])
2AC_INIT([ossie], [0.8.2])
3AC_PREFIX_DEFAULT("/sdr")
4AC_CANONICAL_SYSTEM
5AM_INIT_AUTOMAKE([-Wall -Werror foreign])
6AC_PROG_CXX
7
8#AM_PATH_PYTHON([2.5])
9
10AC_CONFIG_MACRO_DIR([m4])
11AC_CONFIG_SUBDIRS([system/ossie \
12                   system/standardInterfaces \
13                   system/nodebooter \
14                   system/customInterfaces \
15                   system/c_wavLoader \
16                   system/SigProc \
17                   platform/domain \
18                   platform/dtd \
19                   platform/nodes/default_GPP_node \
20                   platform/GPP \
21                   waveforms/ossie_demo \
22                   components/amplifier \
23                   components/ChannelDemo \
24                   components/RxDemo \
25                   components/TxDemo])
26
27AC_ARG_WITH([nbdir],
28            [AS_HELP_STRING([--with-nodebooter], [install nodeBooter in prefix/bin (default: /usr/local/bin)])],
29            [nbdir="$prefix/bin"],
30            [nbdir="/usr/local/bin"])
31
32AM_CONDITIONAL([WITHNB], [test "$with_nbdir" = yes])
33
34AC_CONFIG_FILES([Makefile])
35AC_OUTPUT
36
Note: See TracBrowser for help on using the browser.