libtomcrypt/updatemakes.sh

17 lines
415 B
Bash
Raw Normal View History

2006-01-26 18:11:56 +00:00
#!/bin/bash
./helper.pl --update-makefiles || exit 1
2006-01-26 18:11:56 +00:00
2017-05-10 11:54:05 +00:00
makefiles=(makefile makefile_include.mk makefile.shared makefile.unix makefile.mingw makefile.msvc)
vcproj=(libtomcrypt_VS2008.vcproj)
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
2017-10-10 13:46:38 +00:00
git add ${makefiles[@]} ${vcproj[@]} doc/Doxyfile && git commit -m 'Update makefiles'
fi
2017-03-09 19:18:46 +00:00
exit 0
2017-11-09 14:31:51 +00:00
# ref: $Format:%D$
# git commit: $Format:%H$
# commit time: $Format:%ai$