iw6-mod/deps/libtomcrypt/updatemakes.sh
2025-02-20 05:32:33 -05:00

13 lines
366 B
Bash

#!/bin/bash
./helper.pl --update-makefiles || exit 1
makefiles=(makefile makefile_include.mk makefile.shared makefile.unix makefile.mingw makefile.msvc sources.cmake tests/sources.cmake)
vcproj=(libtomcrypt_VS2008.vcproj)
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
git add ${makefiles[@]} ${vcproj[@]} doc/Doxyfile && git commit -m 'Update makefiles'
fi
exit 0