Update of /cvsroot/pure-data/externals/corelibs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10173
Modified Files: Makefile README generate.sh lib_d_fft.c Log Message: reverted the shit to how it used to be. don't ever touch it again
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/corelibs/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 25 Sep 2006 10:27:50 -0000 1.2 --- Makefile 27 Sep 2006 07:04:58 -0000 1.3 *************** *** 14,17 **** make -C $(EXTERNALS_ROOT) test_locations
- configure: generate.sh - ./generate.sh --- 14,15 ----
Index: README =================================================================== RCS file: /cvsroot/pure-data/externals/corelibs/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 25 Sep 2006 10:25:51 -0000 1.2 --- README 27 Sep 2006 07:04:59 -0000 1.3 *************** *** 8,11 ****
- IOhannes: these files should not be in here in the first place since they are generated - --- 8,9 ----
Index: lib_d_fft.c =================================================================== RCS file: /cvsroot/pure-data/externals/corelibs/lib_d_fft.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lib_d_fft.c 25 Sep 2006 10:18:18 -0000 1.2 --- lib_d_fft.c 27 Sep 2006 07:04:59 -0000 1.3 *************** *** 1,4 **** #include "../../pd/src/d_fftroutine.c" ! #include "../../pd/src/d_fft_mayer.c" #include "../../pd/src/d_fft.c" void lib_d_fft_setup(void) --- 1,4 ---- #include "../../pd/src/d_fftroutine.c" ! #include "../../pd/src/d_mayer_fft.c" #include "../../pd/src/d_fft.c" void lib_d_fft_setup(void)
Index: generate.sh =================================================================== RCS file: /cvsroot/pure-data/externals/corelibs/generate.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** generate.sh 25 Sep 2006 10:25:51 -0000 1.3 --- generate.sh 27 Sep 2006 07:04:59 -0000 1.4 *************** *** 1,19 **** #!/bin/sh
- # delete all .c-files in order to not duplicate entries in there - ## LATER: ask hcs why he is using "touch" and ">>" instead of - ## an initial ">" - rm -f lib_?_*.c - # put these at the top of the file touch lib_d_fft.c echo '#include "../../pd/src/d_fftroutine.c"' >> lib_d_fft.c ! if [ -e "../../pd/src/d_fft_mayer.c" ] ! then ! echo '#include "../../pd/src/d_fft_mayer.c"' >> lib_d_fft.c ! else ! echo '#include "../../pd/src/d_mayer_fft.c"' >> lib_d_fft.c ! fi !
for file in ../../pd/src/[dx]_*.c; do --- 1,8 ---- #!/bin/sh
# 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_mayer_fft.c"' >> lib_d_fft.c
for file in ../../pd/src/[dx]_*.c; do *************** *** 30,34 ****
# these files hold code for other classes, but no classes ! rm -f lib_d_fftroutine.c lib_d_fft_mayer.c lib_d_mayer_fft.c lib_d_resample.c
--- 19,23 ----
# these files hold code for other classes, but no classes ! rm lib_d_fftroutine.c lib_d_mayer_fft.c lib_d_resample.c