X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/b0fcb409d4bbd8243676f3e520e505fc68343351..9449ccf91022d6af60ef71adfb716dcf9633755f:/help/Makefile.am diff --git a/help/Makefile.am b/help/Makefile.am index dca8063a..db0f5681 100644 --- a/help/Makefile.am +++ b/help/Makefile.am @@ -1,10 +1,65 @@ include $(top_srcdir)/gnome-doc-utils.make -dist-hook: doc-dist-hook + +# Annoyingly in the XML, yelp refuses to load relative images fileref, i.e. ../../src/icons/file.png +# whereas the PDF generation inserts these references OK +# Nevertheless we need to copy the images into figures/ so they are available for the distribution installed help +# Most tool icons are _18, except the pan one which is _22 just to be annoying +get-icons: + -cp -f ../src/icons/*_[12][0-9].png C/figures/ +# '-' ^^^^^ means it doesn't care about the exit status +# this copy statement is not critical (especially when run under make distcheck) + +dist-hook: get-icons doc-dist-hook DOC_MODULE = viking -DOC_ENTITIES = legal.xml -DOC_INCLUDES = -DOC_FIGURES = figures/properties_units.png figures/properties_degree.png +DOC_ENTITIES = legal.xml attribution.xml +DOC_INCLUDES = +DOC_FIGURES = \ + figures/addtr_18.png \ + figures/addwp_18.png \ + figures/demdl_18.png \ + figures/edtr_18.png \ + figures/edwp_18.png \ + figures/geomove_18.png \ + figures/geozoom_18.png \ + figures/LayersTracksList.png \ + figures/LayersTracksStatistics.png \ + figures/Maps_download_region_dialog.png \ + figures/map_tile_info_dialog.png \ + figures/mapdl_18.png \ + figures/mover_22.png \ + figures/properties_degree.png \ + figures/properties_units.png \ + figures/route_finder_18.png \ + figures/ruler_18.png \ + figures/select_18.png \ + figures/showpic_18.png \ + figures/Trackpoint_edit_dialog.png \ + figures/Track_elevation_graph.png \ + figures/Track_properties.png \ + figures/Track_statistics.png \ + figures/trw_statusbar.png \ + figures/vik_new_route_18.png \ + figures/WaypointsList.png \ + figures/zoom_18.png \ + figures/zoom_status_popup.png \ + figures/Viking-OSM-CycleMap-ManyTracks.jpg \ + figures/DEM_file_info_dialog.png +DOC_LINGUAS = + +EXTRA_DIST = viking.xml -DOC_LINGUAS = +CLEANFILES= +# man pages processing +# TODO conditional processing +# (availability of docbook stylesheet and xsltproc) +if GEN_MANPAGES +MANPAGES=viking.1 +man_MANS = $(MANPAGES) +CLEANFILES+=$(MANPAGES) +endif +DB2MAN=@DB2MAN_XSL@ +XP=@XP@ -''-nonet +%.1: %.xml + $(XP) -o $@ $(DB2MAN) $<