root/ossiedev/branches/jsnyder/trunk/configure.ac @ 11060

Revision 11060, 2.7 KB (checked in by mcarrick, 14 months ago)

removing the default_GPP_sound_node as it has been replaced with the pulse audio node

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/USRP \
20                   platform/USRP2 \
21                   platform/XilinxFPGA \
22                   platform/PulseAudio \
23                   platform/nodes/default_GPP_node \
24                   platform/nodes/default_GPP_USRP_node \
25                   platform/nodes/default_GPP_USRP2_node \
26                   platform/nodes/default_GPP_USRP_sound_node \
27                   platform/nodes/default_ml403_node \
28                   platform/nodes/default_GPP_PulseAudio_node \
29                   platform/GPP \
30                   waveforms/ossie_demo \
31                   waveforms/ml403_ossie_demo \
32                   waveforms/OSSIETalkUSRP \
33                   waveforms/OSSIETalkLoopBack \
34                   waveforms/Lab5Example \
35                   waveforms/pass_data_waveform \
36                   waveforms/pulseaudio_demo \
37                   components/am_demod \
38                   components/amplifier \
39                   components/AutomaticGainControl \
40                   components/Channel \
41                   components/ChannelDemo \
42                   components/Conv_Dec \
43                   components/Conv_Enc \
44                   components/Decimator \
45                   components/DigitalModem \
46                   components/FrameAssembler \
47                   components/Interpolator \
48                   components/OSSIETalk \
49                   components/PacketResizer \
50                   components/pass_data \
51                   components/rc2007_gui \
52                   components/RxDemo \
53                   components/SymbolSyncPoly \
54                   components/TxDemo \
55                   components/USRP_Commander \
56                   components/WFMDemod \
57                   components/writeBytestoFile \
58                   components/readBytesfromFile \
59                   components/Sound_Commander \
60                   components/EchoSound \
61                   tools])
62
63AC_ARG_WITH([nbdir],
64            [AS_HELP_STRING([--with-nodebooter], [install nodeBooter in prefix/bin (default: /usr/local/bin)])],
65            [nbdir="$prefix/bin"],
66            [nbdir="/usr/local/bin"])
67
68AM_CONDITIONAL([WITHNB], [test "$with_nbdir" = yes])
69
70AC_CONFIG_FILES([Makefile])
71AC_OUTPUT
72
73
Note: See TracBrowser for help on using the browser.