mirror of
https://github.com/larsimmisch/pyalsaaudio.git
synced 2026-06-02 03:17:01 +00:00
2cf24ef81b
setup.py was extended for pypi. doc/index.html is automatically rewritten by doc/src/Makefile to add SourceForge links. index.html is now the standard homepage for pyalsaaudio. Minor documentation fixes (capitalisation, spelling, etc.). Caspers email is hidden in the documentation. git-svn-id: svn://svn.code.sf.net/p/pyalsaaudio/code/trunk@14 ec2f30ec-7544-0410-870e-f70ca00c83f0
23 lines
644 B
Makefile
23 lines
644 B
Makefile
# Makefile for PyAlsaAudio documentation
|
|
#
|
|
# In order to use this you need an unpacked version of the
|
|
# Python source available. Set the source path below
|
|
#
|
|
# You also need a working latex installation, and the latex2html
|
|
# tool installed.
|
|
PYTHONSOURCE = /usr/local/src/Python-2.5.1/
|
|
SFUSER = larsimmisch
|
|
|
|
# Shouldn't need to change anything below here!
|
|
|
|
MKHOWTO = $(PYTHONSOURCE)/Doc/tools/mkhowto
|
|
|
|
all:
|
|
$(MKHOWTO) --dir .. --html pyalsaaudio.tex
|
|
python sffixup.py ../index.html
|
|
|
|
text:
|
|
$(MKHOWTO) --dir .. --text pyalsaaudio.tex
|
|
|
|
install:
|
|
scp ../*.html ../*.gif ../*.png $(SFUSER)@shell.sourceforge.net:/home/groups/p/py/pyalsaaudio/htdocs
|