tommath/updatemakes.sh

17 lines
401 B
Bash
Raw Normal View History

2014-10-13 09:49:02 -04:00
#!/bin/bash
./helper.pl --update-makefiles || exit 1
2014-10-13 09:49:02 -04: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
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
git add ${makefiles[@]} ${vcproj[@]} && git commit -m 'Update makefiles'
fi
2014-10-13 09:49:02 -04: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$