~oif-packaging/evemu/oneiric

« back to all changes in this revision

Viewing changes to tools/Makefile.am

  • Committer: Francis Ginther
  • Date: 2012-08-20 16:17:58 UTC
  • mfrom: (0.1.32 1.0.5)
  • mto: (14.1.2 oneiric)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: francis.ginther@canonical.com-20120820161758-5ht9bd2rgdg3v6hj
Tags: upstream-1.0.5.1
ImportĀ upstreamĀ versionĀ 1.0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
noinst_PROGRAMS = \
 
2
        evemu-echo
 
3
 
 
4
bin_PROGRAMS = \
 
5
        evemu-describe \
 
6
        evemu-device \
 
7
        evemu-record \
 
8
        evemu-play
 
9
 
 
10
INCLUDES=-I$(top_srcdir)/include/
 
11
 
 
12
AM_LDFLAGS = $(top_builddir)/src/libevemu.la
 
13
 
 
14
 
 
15
# man page generation
 
16
if HAVE_DOCTOOLS
 
17
# actual man pages
 
18
man_pages_sources = evemu-describe.txt evemu-device.txt
 
19
# shadow man pages
 
20
man_pages_shadows = evemu-record.1 evemu-play.1
 
21
 
 
22
man_pages = $(man_pages_sources:.txt=.1) $(man_pages_shadows)
 
23
 
 
24
SUFFIXES = .1 .txt .xml
 
25
 
 
26
.xml.1:
 
27
        @$(XMLTO) man $<
 
28
 
 
29
.txt.xml:
 
30
        @$(ASCIIDOC) -b docbook -d manpage -o $@ $<
 
31
 
 
32
dist_man_MANS = $(man_pages)
 
33
CLEANFILES = $(dist_man_MANS)
 
34
MAINTAINERCLEANFILES = $(man_pages) *.xml
 
35
endif