From a9b2d70bc7799ca96c1673b18fe3012b1a4dd329 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Tue, 11 Jan 2011 18:16:05 -0500 Subject: updating copy-to-ide script for more convenient IDE compilation --- docs/flibbit.py | 26 -------------------------- support/scripts/copy-to-ide | 18 +++++++++++------- 2 files changed, 11 insertions(+), 33 deletions(-) delete mode 100644 docs/flibbit.py diff --git a/docs/flibbit.py b/docs/flibbit.py deleted file mode 100644 index 5f149d4..0000000 --- a/docs/flibbit.py +++ /dev/null @@ -1,26 +0,0 @@ -import os -import shutil -import re -from os.path import * - -src = '/Users/mbolivar/foo/arduino.cc/en/Reference' -dst = '/Users/mbolivar/hack/leaf/libmaple/docs/source/arduino' - -fs = [x for x in os.listdir(src) if x.endswith('.rst')] - -def process(line): - if re.match('-+$', line.rstrip()): - return '=' * (len(line) - 1) + '\n' - elif re.match('\^+$', line.rstrip()): - return '-' * (len(line) - 1) + '\n' - return line - -for f in fs: - print 'processing:', f - with open(join(src,f), 'r') as f_in: - with open(join(dst, basename(f)), 'w') as f_out: - label = '.. _arduino-%s:\n\n' % (f.split('.')[0]) - f_out.write(label) - for line in list(f_in.readlines())[20:-22]: - f_out.write(process(line)) - diff --git a/support/scripts/copy-to-ide b/support/scripts/copy-to-ide index 6f8d5f3..301126d 100755 --- a/support/scripts/copy-to-ide +++ b/support/scripts/copy-to-ide @@ -7,6 +7,7 @@ DEST=$1 DEST_REF=$DEST/build/shared/reference DEST_CORES=$DEST/hardware/leaflabs/cores/maple +DEST_LIBS=$DEST/libraries LMAPLE_SRC="LICENSE ./libmaple/*.h @@ -38,19 +39,22 @@ then fi # source -echo Handling libmaple source -rm -r $DEST_CORES/*.c $DEST_CORES/*.cpp $DEST_CORES/*.h $DEST_CORES/*.cxx $DEST_CORES/*.inc $DEST_CORES/*.a $DEST_CORES/*.S $DEST_CORES/maple $DEST_CORES/maple_native +echo Copying libmaple source +rm -rf $DEST_CORES/*.c $DEST_CORES/*.cpp $DEST_CORES/*.h $DEST_CORES/*.cxx $DEST_CORES/*.inc $DEST_CORES/*.a $DEST_CORES/*.S $DEST_CORES/maple $DEST_CORES/maple_native cp -R $LMAPLE_SRC $DEST_CORES +echo Copying over libraries +cp -R libraries/* $DEST_LIBS + # docs echo Deleting old reference directory contents -rm -r $DEST_REF/* +rm -rf $DEST_REF/* -# echo "\nRebuilding documentation" -# (cd $LMAPLE_DOCS; doxygen 2>/dev/null 1>/dev/null && make clean 2>/dev/null 1>/dev/null && make html 2>&1 1>/dev/null) +echo Rebuilding documentation +( cd $LMAPLE_DOCS; doxygen && make clean 2>/dev/null 1>/dev/null && make html ) echo Copying over documentation cp -R $LMAPLE_DOCS_BUILD/* $DEST_REF -echo -echo "Done. Handle libraries manually!" + +echo Done. -- cgit v1.2.3