|
Revision 11059, 1.8 KB
(checked in by mcarrick, 15 months ago)
|
|
removing Sound_in, Sound_out now that Sound_Commander and EchoSound? have been added
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | TOPDIR=$PWD |
|---|
| 4 | listdirs="system/standardInterfaces system/customInterfaces system/c_wavLoader system/SigProc platform/AudioDevice platform/domain platform/dtd platform/PulseAudio platform/XilinxFPGA platform/PulseAudio platform/nodes/default_GPP_node platform/nodes/default_GPP_sound_node platform/nodes/default_GPP_USRP_node platform/nodes/default_GPP_USRP2_node platform/nodes/default_GPP_USRP_sound_node platform/nodes/default_ml403_node platform/nodes/default_GPP_PulseAudio_node waveforms/ossie_demo waveforms/ml403_ossie_demo waveforms/OSSIETalkUSRP waveforms/OSSIETalkLoopBack waveforms/Lab5Example waveforms/pulseaudio_demo components/am_demod components/amplifier components/AutomaticGainControl components/Channel components/ChannelDemo components/Conv_Dec components/Conv_Enc components/Decimator components/DigitalModem components/FrameAssembler components/Interpolator components/PacketResizer components/RxDemo components/SymbolSyncPoly components/TxDemo components/USRP_Commander components/WFMDemod components/writeBytestoFile components/readBytesfromFile components/Sound_Commander components/EchoSound" |
|---|
| 5 | listboostdirs="system/ossie system/nodebooter platform/GPP platform/USRP platform/USRP2" |
|---|
| 6 | listpythondirs="components/OSSIETalk components/pass_data tools waveforms/pass_data_waveform" |
|---|
| 7 | for i in $TOPDIR ${listdirs} |
|---|
| 8 | do |
|---|
| 9 | cd $i |
|---|
| 10 | echo $PWD |
|---|
| 11 | libtoolize --force |
|---|
| 12 | rm -f config.cache |
|---|
| 13 | aclocal |
|---|
| 14 | autoconf |
|---|
| 15 | automake --foreign --add-missing |
|---|
| 16 | cd $TOPDIR |
|---|
| 17 | done |
|---|
| 18 | |
|---|
| 19 | for i in $TOPDIR ${listboostdirs} |
|---|
| 20 | do |
|---|
| 21 | cd $i |
|---|
| 22 | echo $PWD |
|---|
| 23 | libtoolize --force |
|---|
| 24 | rm -f config.cache |
|---|
| 25 | aclocal -I $TOPDIR/boost_m4 |
|---|
| 26 | autoconf |
|---|
| 27 | automake --foreign --add-missing |
|---|
| 28 | cd $TOPDIR |
|---|
| 29 | done |
|---|
| 30 | |
|---|
| 31 | for j in ${listpythondirs} |
|---|
| 32 | do |
|---|
| 33 | cd $j |
|---|
| 34 | echo $PWD |
|---|
| 35 | rm -f config.cache |
|---|
| 36 | aclocal |
|---|
| 37 | autoconf |
|---|
| 38 | automake --foreign --add-missing |
|---|
| 39 | cd $TOPDIR |
|---|
| 40 | done |
|---|
| 41 | |
|---|