]> git.ipfire.org Git - nitsi.git/blob - Makefile.am
Makefile: Remove any excessive whitespace
[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 AM_V_XSLT = $(AM_V_XSLT_$(V))
20 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
21 AM_V_XSLT_0 = @echo " XSLT " $@;
22
23 bin_SCRIPTS = \
24 nitsi
25
26 CLEANFILES += \
27 nitsi
28
29 nitsi_PYTHON = \
30 src/nitsi/__init__.py \
31 src/nitsi/disk.py \
32 src/nitsi/logger.py \
33 src/nitsi/machine.py \
34 src/nitsi/network.py \
35 src/nitsi/recipe.py \
36 src/nitsi/serial_connection.py \
37 src/nitsi/test.py \
38 src/nitsi/virtual_environ.py
39
40 nitsidir = $(pythondir)/nitsi
41
42 # ------------------------------------------------------------------------------
43
44 .PHONY: man
45 man: $(MANPAGES) $(MANPAGES_HTML)
46
47 if ENABLE_MANPAGES
48 MANPAGES = \
49 man/nitsi.1 \
50 man/nitsi.settings.1 \
51 man/nitsi.recipe.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 endif
94
95 # ------------------------------------------------------------------------------
96
97 substitutions = \
98 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
99 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|'
100
101 SED_PROCESS = \
102 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
103 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
104 < $< > $@
105
106 nitsi: nitsi.in Makefile
107 $(SED_PROCESS)