summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-22 14:42:10 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-29 11:09:15 +0100
commit4d9faf822d88c2502dedec9e02b55d143b563882 (patch)
treeb3fa9b906190370890f75e24add2782180fc2aba /man
parentada24d036775097d6b9002be5dd680a7a44c02ec (diff)
automake: Drop manpage build support
We've already thrown out the gtkdoc build support from the automake files, let's do the same with the manpages build. Acked-by: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am45
1 files changed, 0 insertions, 45 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
deleted file mode 100644
index 777f5d1f..00000000
--- a/man/Makefile.am
+++ /dev/null
@@ -1,45 +0,0 @@
-appmandir = $(APP_MAN_DIR)
-appman_RST = \
- intel_aubdump.rst \
- intel_audio_dump.rst \
- intel_bios_dumper.rst \
- intel_error_decode.rst \
- intel_gpu_frequency.rst \
- intel_gpu_top.rst \
- intel_gtt.rst \
- intel_infoframes.rst \
- intel_lid.rst \
- intel_panel_fitter.rst \
- intel_reg.rst \
- intel_stepping.rst \
- intel_upload_blit_large.rst \
- intel_upload_blit_large_gtt.rst \
- intel_upload_blit_large_map.rst \
- intel_upload_blit_small.rst \
- intel_vbt_decode.rst
-
-if HAVE_RST2MAN
-appman_DATA = $(appman_RST:rst=$(APP_MAN_SUFFIX))
-endif
-
-EXTRA_DIST = \
- $(appman_RST) \
- defs.rst.in \
- meson.build \
- rst2man.sh \
- $(NULL)
-
-CLEANFILES = $(appman_DATA) defs.rst
-
-SUFFIXES = .$(APP_MAN_SUFFIX)
-
-# create some definitions useful in the man page rst sources
-defs.rst:
- $(AM_V_GEN)echo ".. |PACKAGE_NAME| replace:: $(PACKAGE_NAME)" > $@
- $(AM_V_GEN)echo ".. |PACKAGE_VERSION| replace:: $(PACKAGE_VERSION)" >> $@
- $(AM_V_GEN)echo ".. |PACKAGE_STRING| replace:: $(PACKAGE_STRING)" >> $@
- $(AM_V_GEN)echo ".. |MANUAL_SECTION| replace:: 1" >> $@
- $(AM_V_GEN)echo ".. |MANUAL_GROUP| replace:: General Commands Manual" >> $@
-
-%.$(APP_MAN_SUFFIX): %.rst defs.rst
- $(AM_V_GEN)rst2man < $< > $@