Moved header generation scripts to utils. Added astyle config.

This commit is contained in:
t-moe
2015-06-07 22:01:40 +02:00
parent c87220d192
commit 9b61534d27
3 changed files with 21 additions and 4 deletions

20
utils/updateheaders.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
FILES=`find common/ emulator/ discovery/ -name "*.c" -or -name "*.h" -or -name "*.cpp" | grep -v libs | grep -v /pixy/`
for FILE in $FILES; do
echo "Adding Header to $FILE"
#remove old header, and format file with astyle
CONTENT=$(perl -0777 -pe 's%^/\*.*?discoverpixy.*?\*/%%igs' $FILE | astyle --options=./utils/style.astylerc)
#add new header
./utils/genheader.sh $FILE > $FILE
#append file content
echo "$CONTENT" >> $FILE
done