~ubuntu-branches/ubuntu/jaunty/pcsc-lite/jaunty-security

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Rousseau
  • Date: 2004-06-13 21:45:56 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040613214556-zio7hrzkz9wwtffx
Tags: 1.2.9-beta2-2
* debian/rules: add -lpthread to LDFLAGS so that pthread_* symbols are
  included in the library (problem only seen on mips and mipsel).
  Closes: #253629
* debian/control: make libpcsclite-dev and libpcsclite1 at Priority:
  optional so that other packages at Priority: optional can use them.
  Closes: #249374

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to create Makefile.in.
 
1
# Process this file with automake to create Makefile.in.
 
2
 
 
3
SUBDIRS = . example
2
4
 
3
5
datadir = $(prefix)/doc
4
 
data_DATA = pcsc-lite-0.8.7.pdf README.DAEMON
5
 
EXTRA_DIST = $(data_DATA)
 
6
data_DATA = pcsc-lite.tex pcsc-lite.bib pcsc-lite.pdf \
 
7
                        ifdhandler-3.tex ifdhandler-3.pdf \
 
8
                        muscle-api-1.3.0.pdf README.DAEMON
 
9
 
 
10
man_MANS = pcscd.8 bundleTool.8 formaticc.1 reader.conf.5
 
11
man_in = pcscd.8.in bundleTool.8.in formaticc.1 reader.conf.5.in
 
12
 
 
13
EXTRA_DIST = $(data_DATA) $(man_in)
 
14
 
 
15
# name of commands
 
16
LATEX = latex
 
17
PDFLATEX = pdflatex
 
18
BIBTEX = bibtex
 
19
LATEX2HTML = latex2html
 
20
 
 
21
# create a dvi file from a tex file
 
22
%.dvi: %.tex
 
23
        $(LATEX) $*
 
24
        -@egrep -c 'Citation .* undefined.' $*.log && ($(BIBTEX) $* ; $(LATEX) $*)
 
25
        -@grep 'Rerun' $*.log && $(LATEX) $*
 
26
        -@grep 'Rerun' $*.log && $(LATEX) $*
 
27
 
 
28
# create a dvi file from a tex file
 
29
%.pdf: %.tex
 
30
        $(PDFLATEX) $*
 
31
        -@egrep -c 'Citation .* undefined.' $*.log && ($(BIBTEX) $* ; $(PDFLATEX) $*)
 
32
        -@grep 'Rerun' $*.log && $(PDFLATEX) $*
 
33
        -@grep 'Rerun' $*.log && $(PDFLATEX) $*
 
34
 
 
35
# create a HTML document
 
36
%.html: %.tex
 
37
        rm -rf $*
 
38
        $(LATEX2HTML) -local_icons -split +2 $*
 
39