cli-barcode PHP
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

22 行
478 B

  1. ##################################################
  2. # Gustavo Arnosti Neves - 2016 Jul 11
  3. # Simple makefile for system install / uninstall
  4. # PHP cli-barcode-generator
  5. # Change INSTDIR if you want to install somewhere else
  6. INSTDIR=/usr/local/bin
  7. BC_BASH=barcode
  8. all:
  9. install:
  10. cp ${BC_BASH} ${INSTDIR}/${BC_BASH}
  11. chmod 755 ${INSTDIR}/${BC_BASH}
  12. permissions:
  13. find . -type d -exec chmod 0755 {} \;
  14. find . -type f -exec chmod 0644 {} \;
  15. uninstall:
  16. rm ${INSTDIR}/${BC_BASH}