| 1 | AC_PREREQ([2.61]) |
|---|
| 2 | AC_INIT([ossie], [0.8.2]) |
|---|
| 3 | AC_PREFIX_DEFAULT("/sdr") |
|---|
| 4 | AC_CANONICAL_SYSTEM |
|---|
| 5 | AM_INIT_AUTOMAKE([-Wall -Werror foreign]) |
|---|
| 6 | AC_PROG_CXX |
|---|
| 7 | |
|---|
| 8 | #AM_PATH_PYTHON([2.5]) |
|---|
| 9 | |
|---|
| 10 | AC_CONFIG_MACRO_DIR([m4]) |
|---|
| 11 | AC_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_sound_node \ |
|---|
| 25 | platform/nodes/default_GPP_USRP_node \ |
|---|
| 26 | platform/nodes/default_GPP_USRP2_node \ |
|---|
| 27 | platform/nodes/default_GPP_USRP_sound_node \ |
|---|
| 28 | platform/nodes/default_ml403_node \ |
|---|
| 29 | platform/nodes/default_GPP_PulseAudio_node \ |
|---|
| 30 | platform/GPP \ |
|---|
| 31 | waveforms/ossie_demo \ |
|---|
| 32 | waveforms/ml403_ossie_demo \ |
|---|
| 33 | waveforms/OSSIETalkUSRP \ |
|---|
| 34 | waveforms/OSSIETalkLoopBack \ |
|---|
| 35 | waveforms/Lab5Example \ |
|---|
| 36 | waveforms/pass_data_waveform \ |
|---|
| 37 | waveforms/pulseaudio_demo \ |
|---|
| 38 | components/am_demod \ |
|---|
| 39 | components/amplifier \ |
|---|
| 40 | components/AutomaticGainControl \ |
|---|
| 41 | components/Channel \ |
|---|
| 42 | components/ChannelDemo \ |
|---|
| 43 | components/Conv_Dec \ |
|---|
| 44 | components/Conv_Enc \ |
|---|
| 45 | components/Decimator \ |
|---|
| 46 | components/DigitalModem \ |
|---|
| 47 | components/FrameAssembler \ |
|---|
| 48 | components/Interpolator \ |
|---|
| 49 | components/OSSIETalk \ |
|---|
| 50 | components/PacketResizer \ |
|---|
| 51 | components/pass_data \ |
|---|
| 52 | components/rc2007_gui \ |
|---|
| 53 | components/RxDemo \ |
|---|
| 54 | components/SymbolSyncPoly \ |
|---|
| 55 | components/TxDemo \ |
|---|
| 56 | components/USRP_Commander \ |
|---|
| 57 | components/WFMDemod \ |
|---|
| 58 | components/writeBytestoFile \ |
|---|
| 59 | components/readBytesfromFile \ |
|---|
| 60 | components/Sound_Commander \ |
|---|
| 61 | components/EchoSound \ |
|---|
| 62 | tools]) |
|---|
| 63 | |
|---|
| 64 | AC_ARG_WITH([nbdir], |
|---|
| 65 | [AS_HELP_STRING([--with-nodebooter], [install nodeBooter in prefix/bin (default: /usr/local/bin)])], |
|---|
| 66 | [nbdir="$prefix/bin"], |
|---|
| 67 | [nbdir="/usr/local/bin"]) |
|---|
| 68 | |
|---|
| 69 | AM_CONDITIONAL([WITHNB], [test "$with_nbdir" = yes]) |
|---|
| 70 | |
|---|
| 71 | AC_CONFIG_FILES([Makefile]) |
|---|
| 72 | AC_OUTPUT |
|---|
| 73 | |
|---|
| 74 | |
|---|