blob: 505ee7646ade37e0b4f8bfc187934de3f0407137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
include $(top_srcdir)/misc/common-makefile.am
AM_CXXFLAGS = -I$(top_srcdir) -I$(top_srcdir)/src \
@PALUDIS_CXXFLAGS@ @PALUDIS_CXXFLAGS_VISIBILITY@
DEFS= \
-DSYSCONFDIR=\"$(sysconfdir)\" \
-DDATADIR=\"$(datadir)\" \
-DLIBEXECDIR=\"$(libexecdir)\" \
-DLIBDIR=\"$(libdir)\"
SUBDIRS = .
bin_PROGRAMS = instruo
noinst_PROGRAMS = man-instruo
man_MANS = instruo.1
SUFFIXES = .1 .txt .xml
man_MANS_txts = instruo.txt
man_MANS_xmls = instruo.xml
$(man_MANS_txts) : man-instruo
if ! ./man-instruo --asciidoc `echo $@ | sed -e 's.^instruo-*..' -e 's,\.txt$$,,'` > $@ ; then rm -f $@ ; exit 1 ; fi
.txt.xml : $(man_MANS_txts)
asciidoc --doctype=manpage --backend=docbook --out-file=$@ $<
.xml.1 : $(man_MANS_xmls)
xmlto man $<
@: $@
man_instruo_SOURCES = \
man_instruo.cc \
command_line.hh \
command_line.cc
man_instruo_LDADD = \
$(top_builddir)/paludis/libpaludis_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/paludis/args/libpaludisargs_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/paludis/util/libpaludisutil_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/src/output/liboutput.a \
$(DYNAMIC_LD_LIBS)
instruo_SOURCES = \
command_line.hh command_line.cc \
instruo.cc
instruo_LDADD = \
$(top_builddir)/paludis/libpaludis_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/paludis/args/libpaludisargs_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/paludis/util/libpaludisutil_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/src/output/liboutput.a \
$(DYNAMIC_LD_LIBS)
TESTS = version_TEST \
help_TEST
EXTRA_DIST = \
$(man_MANS) \
$(TESTS)
DISTCLEANFILES = \
$(man_MANS) \
$(noinst_DATA) \
$(man_MANS_txts) \
$(man_MANS_xmls)
|