root/ossiedev/branches/jsnyder/trunk/bootstrap @ 10932

Revision 10592, 1.7 KB (checked in by Snyder.Jason, 2 years ago)

added readBytesfromFile and writeBytestoFile to bootstrap, configure.ac, and Makefile.am

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3TOPDIR=$PWD
4listdirs="system/standardInterfaces system/customInterfaces system/c_wavLoader system/SigProc platform/AudioDevice platform/domain platform/dtd platform/Sound_in platform/Sound_out platform/XilinxFPGA 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 waveforms/ossie_demo waveforms/ml403_ossie_demo waveforms/OSSIETalkUSRP waveforms/OSSIETalkLoopBack waveforms/Lab5Example 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/JPEG_VideoViewer components/PacketResizer components/RxDemo components/SymbolSyncPoly components/TxDemo components/USRP_Commander components/WebCamCapture components/WFMDemod components/writeBytestoFile components/readBytesfromFile"
5listboostdirs="system/ossie system/nodebooter platform/GPP platform/USRP platform/USRP2"
6listpythondirs="components/OSSIETalk components/pass_data tools waveforms/pass_data_waveform"
7for i in $TOPDIR ${listdirs}
8do
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
17done
18
19for i in $TOPDIR ${listboostdirs}
20do
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
29done
30
31for j in ${listpythondirs}
32do
33 cd $j
34 echo $PWD
35 rm -f config.cache
36 aclocal
37 autoconf
38 automake --foreign --add-missing
39 cd $TOPDIR
40done
41
Note: See TracBrowser for help on using the browser.