cli-barcode PHP
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
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}