You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
429 B
24 lines
429 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
WAV2SKETCH="${HOME}/Arduino-Teensy/MicroDexed/third-party/wav2sketch"
|
||
|
|
||
|
if [ ! -e "${WAV2SKETCH}" ]
|
||
|
then
|
||
|
gcc "${HOME}/Arduino-Teensy/MicroDexed/third-party/wav2sketch.c" -o "${WAV2SKETCH}"
|
||
|
chmod 700 "${WAV2SKETCH}"
|
||
|
fi
|
||
|
|
||
|
"${WAV2SKETCH}"
|
||
|
|
||
|
rm *.h
|
||
|
rm -f drumset.h
|
||
|
touch drumset.h
|
||
|
|
||
|
for i in `ls -1 *.cpp`
|
||
|
do
|
||
|
echo "# ${i}" >> drumset.h
|
||
|
cat "${i}" | grep '^[A-Za-z0-9]' >> drumset.h
|
||
|
echo "" >> drumset.h
|
||
|
rm "${i}"
|
||
|
done
|