2014-10-13 09:49:02 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-12-02 08:27:53 -05:00
|
|
|
./helper.pl --update-makefiles || exit 1
|
2014-10-13 09:49:02 -04:00
|
|
|
|
2018-12-02 12:28:59 -05:00
|
|
|
makefiles=(makefile makefile.shared makefile_include.mk makefile.msvc makefile.unix makefile.mingw)
|
2018-12-02 15:18:10 -05:00
|
|
|
vcproj=(libtommath_VS2008.vcproj)
|
2014-10-13 09:49:02 -04:00
|
|
|
|
2018-12-02 08:27:53 -05:00
|
|
|
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
|
|
|
|
git add ${makefiles[@]} ${vcproj[@]} && git commit -m 'Update makefiles'
|
|
|
|
fi
|
2014-10-13 09:49:02 -04:00
|
|
|
|
2018-12-02 08:27:53 -05:00
|
|
|
exit 0
|
2014-10-13 09:49:02 -04:00
|
|
|
|
2017-08-28 10:27:26 -04:00
|
|
|
# ref: $Format:%D$
|
|
|
|
# git commit: $Format:%H$
|
|
|
|
# commit time: $Format:%ai$
|