From dc86a87016dcb6fd64912ee861eaa8c5d9fa591a Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 10 Nov 2009 00:40:02 +0000 Subject: renaming this to 'vanilla' since that's the most common name used for the core of Pd svn path=/trunk/; revision=12733 --- externals/corelibs/generate.sh | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100755 externals/corelibs/generate.sh (limited to 'externals/corelibs') diff --git a/externals/corelibs/generate.sh b/externals/corelibs/generate.sh deleted file mode 100755 index 0e37eefd..00000000 --- a/externals/corelibs/generate.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -echo this script appends, so first delete all files you want to update! - -# put these at the top of the file -touch lib_d_fft.c -echo '#include "../../pd/src/d_fftroutine.c"' >> lib_d_fft.c -echo '#include "../../pd/src/d_fft_mayer.c"' >> lib_d_fft.c - -for file in ../../pd/src/[dx]_*.c; do - newfile=`echo $file | sed 's|.*/src/\([dx]_\)|lib_\1|'` - touch $newfile - /bin/echo -n '#include "' >> $newfile - /bin/echo -n $file >> $newfile - /bin/echo '"' >> $newfile - /bin/echo "void "`echo $newfile|sed 's|\(.*\)\.c|\1|'`"_setup(void)" >> $newfile - /bin/echo "{" >> $newfile - /bin/echo $file | sed 's|.*src/\(.*\)\.c| \1_setup();|' >> $newfile - /bin/echo "}" >> $newfile -done - -# these files hold code for other classes, but no classes -rm lib_d_fftroutine.c lib_d_fft_mayer.c lib_d_resample.c -rm lib_d_fft_fftw.c lib_d_fft_fftsg.c lib_d_fftsg_h.c - -- cgit v1.2.1