2006-01-26 18:11:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-02 08:05:40 +00:00
|
|
|
./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)
|
2017-05-09 14:15:30 +00:00
|
|
|
vcproj=(libtomcrypt_VS2008.vcproj)
|
2017-03-15 21:21:53 +00:00
|
|
|
|
|
|
|
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
|
|
|
|
git add ${makefiles[@]} ${vcproj[@]} && git commit -m 'Update makefiles'
|
|
|
|
fi
|
|
|
|
|
2017-03-09 19:18:46 +00:00
|
|
|
exit 0
|