]> git.ipfire.org Git - nitsi.git/blob - Makefile.am
Use one time to which all serial connection output is relativ
[nitsi.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
2 AM_MAKEFLAGS = --no-print-directory
3 AUTOMAKE_OPTIONS = color-tests
4
5 # remove target it the command fails
6 .DELETE_ON_ERROR:
7
8 # keep itermediate files
9 .SECONDARY:
10
11 pythondir = $(pyexecdir)
12
13 CLEANFILES =
14 DISTCLEANFILES =
15 EXTRA_DIST =
16 INSTALL_DIRS =
17 noinst_DATA =
18
19
20 AM_V_XSLT = $(AM_V_XSLT_$(V))
21 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
22 AM_V_XSLT_0 = @echo " XSLT " $@;
23
24 bin_SCRIPTS = \
25 nitsi
26
27 CLEANFILES += \
28 nitsi
29
30 nitsi_PYTHON = \
31 src/nitsi/__init__.py \
32 src/nitsi/disk.py \
33 src/nitsi/logger.py \
34 src/nitsi/machine.py \
35 src/nitsi/network.py \
36 src/nitsi/recipe.py \
37 src/nitsi/serial_connection.py \
38 src/nitsi/test.py \
39 src/nitsi/virtual_environ.py
40
41
42 nitsidir = $(pythondir)/nitsi
43
44 # ------------------------------------------------------------------------------
45
46 .PHONY: man
47 man: $(MANPAGES) $(MANPAGES_HTML)
48
49 if ENABLE_MANPAGES
50 MANPAGES = \
51 man/nitsi.1
52
53 MANPAGES_XML = $(patsubst %.1,%.xml,$(patsubst %.5,%.xml,$(MANPAGES)))
54 MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
55
56 man_MANS = \
57 $(MANPAGES)
58
59 noinst_DATA += \
60 $(MANPAGES_HTML)
61
62 CLEANFILES += \
63 $(man_MANS) \
64 $(MANPAGES_HTML)
65
66 EXTRA_DIST += \
67 $(MANPAGES_XML) \
68 man/custom-html.xsl
69
70 XSLTPROC_FLAGS = \
71 --nonet \
72 --stringparam man.output.quietly 1 \
73 --stringparam funcsynopsis.style ansi \
74 --stringparam man.th.extra1.suppress 1 \
75 --stringparam man.authors.section.enabled 1 \
76 --stringparam man.copyright.section.enabled 1
77
78 XSLTPROC_COMMAND_MAN = \
79 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
80 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
81
82 XSLTPROC_COMMAND_HTML = \
83 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
84
85 man/%.1: man/%.xml
86 $(XSLTPROC_COMMAND_MAN)
87
88 man/%.5: man/%.xml
89 $(XSLTPROC_COMMAND_MAN)
90
91 man/%.html: man/%.xml man/custom-html.xsl
92 $(XSLTPROC_COMMAND_HTML)
93
94 endif
95
96 # ------------------------------------------------------------------------------
97
98 substitutions = \
99 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
100 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|'
101
102 SED_PROCESS = \
103 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
104 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
105 < $< > $@
106
107 nitsi: nitsi.in Makefile
108 $(SED_PROCESS)