blob: 14210c05d147374c9aa04da25784609e899a4ac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
./helper.pl --update-makefiles || exit 1
makefiles=(makefile makefile_include.mk makefile.shared makefile.unix makefile.mingw makefile.msvc)
vcproj=(libtomcrypt_VS2008.vcproj)
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
git add ${makefiles[@]} ${vcproj[@]} doc/Doxyfile && git commit -m 'Update makefiles'
fi
exit 0
|