8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00
firebird-mirror/extern/libtomcrypt/updatemakes.sh

13 lines
332 B
Bash
Raw Normal View History

#!/bin/bash
2018-11-30 14:33:28 +01:00
./helper.pl --update-makefiles || exit 1
2018-11-30 14:33:28 +01:00
makefiles=(makefile makefile_include.mk makefile.shared makefile.unix makefile.mingw makefile.msvc)
vcproj=(libtomcrypt_VS2008.vcproj)
2018-11-30 14:33:28 +01:00
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
git add ${makefiles[@]} ${vcproj[@]} doc/Doxyfile && git commit -m 'Update makefiles'
fi
2018-11-30 14:33:28 +01:00
exit 0