~ubuntu-branches/ubuntu/karmic/postgresql-8.4/karmic-security

« back to all changes in this revision

Viewing changes to doc/src/sgml/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-05-05 00:58:06 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090505005806-c19tt7oyqb7kuw49
Tags: 8.4~beta1+cvs20090503-1
New upstream snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
# PostScript from TeX
174
174
postgres.ps:
175
175
        $(error Invalid target;  use postgres-A4.ps or postgres-US.ps as targets)
176
 
        
 
176
 
177
177
%.ps: %.dvi
178
178
        dvips -o $@ $<
179
179
 
180
180
postgres.pdf:
181
181
        $(error Invalid target;  use postgres-A4.pdf or postgres-US.pdf as targets)
182
 
        
 
182
 
183
183
%.pdf: %.tex-pdf
184
184
        @rm -f $*.aux $*.log $*.out
185
185
# multiple runs are necessary to create proper intra-document links
208
208
INSTALL.html: standalone-install.sgml installation.sgml version.sgml
209
209
        $(JADE.text) -V nochunks standalone-install.sgml installation.sgml >$@
210
210
 
211
 
# remove links to main documentation
212
 
HISTORY.html: release.sgml
213
 
        ( echo '<!doctype appendix PUBLIC "-//OASIS//DTD DocBook V4.2//EN">'; \
214
 
          cat $< ) | \
215
 
        $(PERL) -p -0 -e 's/<link\s+linkend[^>]*>//g' | \
216
 
        $(PERL) -p -e 's/<\/link>//g' >tempfile_HISTORY.sgml
 
211
HISTORY.html: generate_history.pl $(wildcard $(srcdir)/release*.sgml)
 
212
        $(PERL) $< "$(srcdir)" release.sgml >tempfile_HISTORY.sgml
217
213
        $(JADE.text) -V nochunks tempfile_HISTORY.sgml >$@
218
214
        rm tempfile_HISTORY.sgml
219
215