1#!/bin/bash
2
3./helper.pl --update-makefiles || exit 1
4
5makefiles=(makefile makefile_include.mk makefile.shared makefile.unix makefile.mingw makefile.msvc)
6vcproj=(libtomcrypt_VS2008.vcproj)
7
8if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
9  git add ${makefiles[@]} ${vcproj[@]} doc/Doxyfile && git commit -m 'Update makefiles'
10fi
11
12exit 0
13