public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel.vetter@ffwll.ch>
To: IGT development <igt-dev@lists.freedesktop.org>
Cc: Daniel Vetter <daniel.vetter@intel.com>
Subject: [igt-dev] [PATCH i-g-t 2/7] automake: Drop manpage build support
Date: Tue, 22 Jan 2019 14:42:10 +0100	[thread overview]
Message-ID: <20190122134215.28396-2-daniel.vetter@ffwll.ch> (raw)
In-Reply-To: <20190122134215.28396-1-daniel.vetter@ffwll.ch>

We've already thrown out the gtkdoc build support from the automake
files, let's do the same with the manpages build.

Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
---
 Makefile.am     |  2 +-
 configure.ac    |  5 -----
 man/Makefile.am | 45 ---------------------------------------------
 3 files changed, 1 insertion(+), 51 deletions(-)
 delete mode 100644 man/Makefile.am

diff --git a/Makefile.am b/Makefile.am
index 2ca522a0cb2a..81b6650986de 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -21,7 +21,7 @@
 
 ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4
 
-SUBDIRS = lib man tools scripts benchmarks include
+SUBDIRS = lib tools scripts benchmarks include
 
 if BUILD_TESTS
 SUBDIRS += tests
diff --git a/configure.ac b/configure.ac
index 73064fb92b30..44c20eaeb0c7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -43,10 +43,6 @@ AC_PROG_CC
 AC_PROG_LEX
 AC_PROG_YACC
 
-# check for rst2man for generating man pages
-AC_CHECK_PROG(RST2MAN, rst2man, yes, no)
-AM_CONDITIONAL(HAVE_RST2MAN, [test "x$RST2MAN" = xyes])
-
 # Checks for functions, headers, structures, etc.
 AC_HEADER_STDC
 AC_CHECK_HEADERS([termios.h linux/kd.h sys/kd.h libgen.h sys/io.h])
@@ -392,7 +388,6 @@ AC_CONFIG_FILES([
 		 benchmarks/wsim/Makefile
 		 lib/Makefile
 		 lib/tests/Makefile
-		 man/Makefile
 		 scripts/Makefile
 		 tests/Makefile
 		 tests/intel-ci/Makefile
diff --git a/man/Makefile.am b/man/Makefile.am
deleted file mode 100644
index 777f5d1fedd7..000000000000
--- 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 < $< > $@
-- 
2.20.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  reply	other threads:[~2019-01-22 13:42 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-22 13:42 [igt-dev] [PATCH i-g-t 1/7] automake: Drop gtkdoc build remnants Daniel Vetter
2019-01-22 13:42 ` Daniel Vetter [this message]
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 3/7] automake: drop assembler/shader-debugger automake support Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 4/7] automake: Point builders at meson Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 5/7] automake: Drop runner build support Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 6/7] automake: Ditch all EXTRA_DIST directives Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 7/7] automake: Remove VC4/V3D build support Daniel Vetter
2019-01-22 18:50   ` Eric Anholt
2019-01-23 11:38     ` Daniel Vetter
2019-01-23 11:54       ` Jani Nikula
2019-01-23 12:49   ` [igt-dev] [PATCH i-g-t] " Daniel Vetter
2019-01-22 14:32 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] automake: Drop gtkdoc build remnants Patchwork
2019-01-22 17:11 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-01-23 11:10 ` [igt-dev] [PATCH i-g-t 1/7] " Petri Latvala
2019-01-23 11:42   ` Daniel Vetter
2019-01-23 12:15     ` Petri Latvala
2019-01-29 10:11       ` Daniel Vetter
2019-01-23 13:19 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] automake: Drop gtkdoc build remnants (rev2) Patchwork
2019-01-23 15:32 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190122134215.28396-2-daniel.vetter@ffwll.ch \
    --to=daniel.vetter@ffwll.ch \
    --cc=daniel.vetter@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox