~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Joshua Judson Rosen
  • Date: 2013-09-16 02:09:13 UTC
  • Revision ID: rozzin@geekspace.com-20130916020913-js1psxq6i134fzfj
Prevent logo/manual name-conflicts when making PDFs with newer Texinfo.

The texinfo.tex from Texinfo 4.12 (distributed with Automake 1.11.2)
tries to use PDF-formatted images in preference to PNG images,
and fails if there happens to be an incompletely-generated PDF
by the same name... because the manual itself has the same name
as one of the images used in it.

So, give the logo a distinct name of "foxtrotgps-logo".

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
foxtrotgps_TEXINFOS = $(images) $(images_eps)
10
10
 
11
11
images = \
12
 
        foxtrotgps.png \
 
12
        foxtrotgps-logo.png \
13
13
        screenshots/main-window.png \
14
14
        screenshots/map-download.png \
15
15
        screenshots/tracking.png \
26
26
.png.eps:
27
27
        convert $< $@
28
28
 
29
 
foxtrotgps.png:
30
 
        $(LN_S) $(top_srcdir)/pixmaps/$@ $@
 
29
foxtrotgps-logo.png:
 
30
        $(LN_S) $(top_srcdir)/pixmaps/foxtrotgps.png $@
31
31
 
32
32
$(images): | screenshots
33
33