Edit

kc3-lang/libtommath/updatemakes.sh

Branch :

  • Show log

    Commit

  • Author : Daniel Mendler
    Date : 2019-04-07 02:29:28
    Hash : 70a30ae7
    Message : remove footers

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