2006-01-26 18:11:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-02 09:05:40 +01:00
|
|
|
./helper.pl --update-makefiles || exit 1
|
2006-01-26 18:11:56 +00:00
|
|
|
|
2017-05-10 13:54:05 +02:00
|
|
|
makefiles=(makefile makefile_include.mk makefile.shared makefile.unix makefile.mingw makefile.msvc)
|
2017-05-09 16:15:30 +02:00
|
|
|
vcproj=(libtomcrypt_VS2008.vcproj)
|
2017-03-15 22:21:53 +01:00
|
|
|
|
|
|
|
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
|
|
|
|
git add ${makefiles[@]} ${vcproj[@]} && git commit -m 'Update makefiles'
|
|
|
|
fi
|
|
|
|
|
2017-03-09 20:18:46 +01:00
|
|
|
exit 0
|