summaryrefslogtreecommitdiff
path: root/docs/man
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2021-08-05 20:11:17 +0200
committerAleksander Morgado <aleksander@aleksander.es>2021-08-05 21:02:28 +0000
commit00212716ee5eefd57e4df5a6bc811d5a30fde0d4 (patch)
tree03dbafffde21f3cb85938932e0f545c8ac9b2934 /docs/man
parent748e4fbdae337995a6285790bd3fdc0324eec280 (diff)
build: Remove autotools
To avoid the burden of maintaining multiple build systems, autotools support has been removed.
Diffstat (limited to 'docs/man')
-rw-r--r--docs/man/Makefile.am55
1 files changed, 0 insertions, 55 deletions
diff --git a/docs/man/Makefile.am b/docs/man/Makefile.am
deleted file mode 100644
index 3d2105a..0000000
--- a/docs/man/Makefile.am
+++ /dev/null
@@ -1,55 +0,0 @@
-
-dist_man_MANS = \
- qmicli.1 \
- qmi-network.1 \
- qmi-firmware-update.1 \
- $(NULL)
-
-# List of all source files which affect the output of --help-all
-QMICLI_SOURCES_WITH_HELP = \
- $(top_srcdir)/src/qmicli/qmicli.c \
- $(top_srcdir)/src/qmicli/qmicli-dms.c \
- $(top_srcdir)/src/qmicli/qmicli-nas.c \
- $(top_srcdir)/src/qmicli/qmicli-wds.c \
- $(top_srcdir)/src/qmicli/qmicli-pbm.c \
- $(top_srcdir)/src/qmicli/qmicli-uim.c \
- $(top_srcdir)/src/qmicli/qmicli-sar.c
-
-# Depend only in the source files, not in the actual program, so that the
-# manpage doesn't get rebuilt when building from a tarball
-# Also, make sure that the qmicli.1 file is always generated, even when help2man
-# is not available
-qmicli.1: $(QMICLI_SOURCES_WITH_HELP)
- $(AM_V_GEN) \
- $(HELP2MAN) \
- --output=$@ \
- --name='Control QMI devices' \
- --help-option='--help-all' \
- --libtool \
- $(top_builddir)/src/qmicli/qmicli || \
- touch $@
-
-# Depend only in the .in file, not in the actual script, so that the
-# manpage doesn't get rebuilt when building from a tarball.
-# Make sure that the qmi-network.1 file is always generated, even when help2man
-# is not available
-qmi-network.1: $(top_srcdir)/utils/qmi-network.in
- $(AM_V_GEN) \
- $(HELP2MAN) \
- --output=$@ \
- --name='Simple network management of QMI devices' \
- $(top_builddir)/utils/qmi-network || \
- touch $@
-
-# Depend only in the source files, not in the actual program, so that the
-# manpage doesn't get rebuilt when building from a tarball
-# Also, make sure that the qmi-firmware-update.1 file is always generated, even
-# when help2man is not available
-qmi-firmware-update.1: $(top_srcdir)/src/qmi-firmware-update/qfu-main.c
- $(AM_V_GEN) \
- $(HELP2MAN) \
- --output=$@ \
- --name='Update firmware in QMI devices' \
- --libtool \
- $(top_builddir)/src/qmi-firmware-update/qmi-firmware-update || \
- touch $@