Mercurial > hg > sv-dependency-builds
annotate src/portaudio_20161030/fixdir.bat @ 141:1b5b6dfd0d0e
Add updated build of PortAudio for OSX
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 03 Jan 2017 15:10:52 +0000 |
parents | 59a8758c56b1 |
children |
rev | line source |
---|---|
cannam@140 | 1 rem Use Astyle to fix style in 'C' files |
cannam@140 | 2 cd %1% |
cannam@140 | 3 |
cannam@140 | 4 fixlines -p *.c |
cannam@140 | 5 fixlines -p *.cpp |
cannam@140 | 6 fixlines -p *.cc |
cannam@140 | 7 |
cannam@140 | 8 astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.c |
cannam@140 | 9 astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cpp |
cannam@140 | 10 astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cc |
cannam@140 | 11 del *.orig |
cannam@140 | 12 @rem convert line terminators to Unix style LFs |
cannam@140 | 13 fixlines -u *.c |
cannam@140 | 14 fixlines -u *.cpp |
cannam@140 | 15 fixlines -u *.cc |
cannam@140 | 16 fixlines -u *.h |
cannam@140 | 17 del *.bak |
cannam@140 | 18 |
cannam@140 | 19 cd ..\ |