Newer
Older
hb / Makefile
  1. # Fake Makefile For hb
  2. # $Id: Makefile,v 1.3 2001/07/18 06:57:26 tundra Exp $
  3.  
  4. all: # Do nothing - this is a python script that needs no build
  5.  
  6. install:
  7. install -c -o root -g wheel -m 755 ./hb.py ${PREFIX}/bin
  8. mkdir ${PREFIX}/share/doc/hb
  9. install -c -o root -g wheel -m 644 ./hb.1.gz ${PREFIX}/man/man1
  10. install -c -o root -g wheel -m 644 ./hb.txt ${PREFIX}/share/doc/hb
  11. install -c -o root -g wheel -m 644 ./0-StartHere.txt ${PREFIX}/share/doc/hb
  12. install -c -o root -g wheel -m 644 ./1-HB-License.txt ${PREFIX}/share/doc/hb
  13. install -c -o root -g wheel -m 644 ./2-HowToUse.txt ${PREFIX}/share/doc/hb
  14. install -c -o root -g wheel -m 644 ./3-UnderTheHood.txt ${PREFIX}/share/doc/hb
  15. install -c -o root -g wheel -m 644 ./4-Limitations-Enhancements.txt ${PREFIX}/share/doc/hb
  16.