~ubuntu-branches/ubuntu/precise/pyalsaaudio/precise

« back to all changes in this revision

Viewing changes to doc/src/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Paul Brossier
  • Date: 2006-08-13 17:08:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060813170801-j4x8km6jtrg9d0dl
Tags: 0.2-1
* New upstream release
* Add a watch file
* Use debian/examples and debian/docs
* Merge changelog with ubuntu
* Add myself to uploaders field
* Upload to debian (closes: #382796)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for PyAlsaAudio documentation
 
2
#
 
3
# In order to use this you need an unpacked version of the
 
4
# Python source available. Set the source path below
 
5
#
 
6
# You also need a working latex installation, and the latex2html
 
7
# tool installed.
 
8
PYTHONSOURCE = /usr/src/Python-2.4.1/
 
9
 
 
10
# Shouldn't need to change anything below here!
 
11
 
 
12
MKHOWTO = $(PYTHONSOURCE)/Doc/tools/mkhowto
 
13
 
 
14
all:
 
15
        $(MKHOWTO) --dir .. --html pyalsaaudio.tex
 
16
 
 
17
text:
 
18
        $(MKHOWTO) --dir .. --text pyalsaaudio.tex
 
19
 
 
20