~ubuntu-branches/ubuntu/wily/soundscaperenderer/wily-proposed

« back to all changes in this revision

Viewing changes to man/Makefile.am

  • Committer: Package Import Robot
  • Author(s): IOhannes m zmölnig (Debian/GNU)
  • Date: 2014-09-01 11:35:32 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140901113532-svjohhyw755nkxef
Tags: 0.4.2~dfsg-1
* Imported Upstream version 0.4.2~dfsg

* Refreshed patches.
* Removed patches applied upstream.
* Install upstream's NEWS as changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## This file will be processed by automake (which is called by autogen.sh) to
 
2
## generate Makefile.in, which in turn will be processed by configure to
 
3
## generate Makefile.
 
4
 
 
5
## comments starting with a single # are copied to Makefile.in (and afterwards
 
6
## to Makefile), comments with ## are dropped.
 
7
 
 
8
dist_man_MANS = $(SSR_executables:=.1)
 
9
 
 
10
MAINTAINERCLEANFILES = $(dist_man_MANS)
 
11
 
 
12
RENDERER = $(@:ssr-%.1=%)
 
13
RENDERER_TEXT = "manual page for the \
 
14
                `test $(RENDERER) = binaural -o $(RENDERER) = generic \
 
15
                && echo $(RENDERER) \
 
16
                || echo $(RENDERER) | tr 'a-z' 'A-Z'` renderer"
 
17
 
 
18
# help2man must be called after the binaries are built in the src/ folder!
 
19
# Note the order of SUBDIRS in the top-level Makefile.
 
20
#
 
21
# "make" must be called before "make dist", there is no automatic dependency!
 
22
 
 
23
$(dist_man_MANS): $(top_srcdir)/src/configuration.cpp $(top_srcdir)/configure.ac
 
24
        $(HELP2MAN) --no-info --name=$(RENDERER_TEXT) --output=$@ --locale=en \
 
25
                $(top_builddir)/src/$(@:.1=$(EXEEXT))
 
26
 
 
27
## Settings for Vim (http://www.vim.org/), please do not remove:
 
28
## vim:textwidth=80:comments+=bO\:##