I2C toy code
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

13 рядки
319 B

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