cli-barcode PHP
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

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