1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-30 19:28:10 +00:00
simplesshd/dropbear/libtomcrypt/updatemakes.sh

13 lines
332 B
Bash
Raw Normal View History

2014-12-10 21:56:49 +00:00
#!/bin/bash
2019-06-09 20:44:26 +00:00
./helper.pl --update-makefiles || exit 1
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
makefiles=(makefile makefile_include.mk makefile.shared makefile.unix makefile.mingw makefile.msvc)
vcproj=(libtomcrypt_VS2008.vcproj)
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
git add ${makefiles[@]} ${vcproj[@]} doc/Doxyfile && git commit -m 'Update makefiles'
fi
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
exit 0