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