summaryrefslogtreecommitdiff
path: root/static/openbsd/man8
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 16:17:52 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 16:17:52 -0400
commit160aa82b2d39c46ad33723d7d909cb4972efbb03 (patch)
treeed23b9b73e24955a407532da2a56b2c646d43a96 /static/openbsd/man8
parentb9cde963555b6519c5dbd34a39dee3418f593437 (diff)
refactor: OpenBSD makefiles use wildcard
Refactored the makefiles to use the wildcard function of GNU Make so that new man pages can be added with few changes.
Diffstat (limited to 'static/openbsd/man8')
-rw-r--r--static/openbsd/man8/Makefile24
-rw-r--r--static/openbsd/man8/man8.alpha/Makefile3
-rw-r--r--static/openbsd/man8/man8.amd64/Makefile3
-rw-r--r--static/openbsd/man8/man8.arm64/Makefile2
-rw-r--r--static/openbsd/man8/man8.armv7/Makefile2
-rw-r--r--static/openbsd/man8/man8.hppa/Makefile3
-rw-r--r--static/openbsd/man8/man8.i386/Makefile3
-rw-r--r--static/openbsd/man8/man8.landisk/Makefile2
-rw-r--r--static/openbsd/man8/man8.loongson/Makefile2
-rw-r--r--static/openbsd/man8/man8.luna88k/Makefile3
-rw-r--r--static/openbsd/man8/man8.macppc/Makefile3
-rw-r--r--static/openbsd/man8/man8.octeon/Makefile2
-rw-r--r--static/openbsd/man8/man8.powerpc64/Makefile2
-rw-r--r--static/openbsd/man8/man8.riscv64/Makefile2
-rw-r--r--static/openbsd/man8/man8.sparc64/Makefile3
15 files changed, 15 insertions, 44 deletions
diff --git a/static/openbsd/man8/Makefile b/static/openbsd/man8/Makefile
index 1c7f17a8..4624476a 100644
--- a/static/openbsd/man8/Makefile
+++ b/static/openbsd/man8/Makefile
@@ -1,25 +1,4 @@
-MAN = afterboot.8 \
- autoinstall.8 \
- boot_config.8 \
- bulk.8 \
- crash.8 \
- daily.8 \
- diskless.8 \
- genassym.sh.8 \
- intro.8 \
- netstart.8 \
- rc.8 \
- rc.conf.8 \
- rc.d.8 \
- rc.shutdown.8 \
- rc.subr.8 \
- release.8 \
- security.8 \
- ssl.8 \
- starttls.8 \
- sticky.8 \
- yp.8
-
+MAN = $(wildcard *.8)
SUBDIRS = man8.alpha \
man8.amd64 \
man8.arm64 \
@@ -36,4 +15,3 @@ SUBDIRS = man8.alpha \
man8.sparc64
include ../../mandoc.mk
-
diff --git a/static/openbsd/man8/man8.alpha/Makefile b/static/openbsd/man8/man8.alpha/Makefile
index 8e160c60..c65e4547 100644
--- a/static/openbsd/man8/man8.alpha/Makefile
+++ b/static/openbsd/man8/man8.alpha/Makefile
@@ -1,4 +1,3 @@
-MAN = boot_alpha.8 \
- MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.amd64/Makefile b/static/openbsd/man8/man8.amd64/Makefile
index e8fe087c..c65e4547 100644
--- a/static/openbsd/man8/man8.amd64/Makefile
+++ b/static/openbsd/man8/man8.amd64/Makefile
@@ -1,4 +1,3 @@
-MAN = boot_amd64.8 \
- MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.arm64/Makefile b/static/openbsd/man8/man8.arm64/Makefile
index a12ae7d7..c65e4547 100644
--- a/static/openbsd/man8/man8.arm64/Makefile
+++ b/static/openbsd/man8/man8.arm64/Makefile
@@ -1,3 +1,3 @@
-MAN = MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.armv7/Makefile b/static/openbsd/man8/man8.armv7/Makefile
index a12ae7d7..c65e4547 100644
--- a/static/openbsd/man8/man8.armv7/Makefile
+++ b/static/openbsd/man8/man8.armv7/Makefile
@@ -1,3 +1,3 @@
-MAN = MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.hppa/Makefile b/static/openbsd/man8/man8.hppa/Makefile
index 730e61ee..c65e4547 100644
--- a/static/openbsd/man8/man8.hppa/Makefile
+++ b/static/openbsd/man8/man8.hppa/Makefile
@@ -1,4 +1,3 @@
-MAN = boot_hppa.8 \
- MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.i386/Makefile b/static/openbsd/man8/man8.i386/Makefile
index f8f6bf9a..c65e4547 100644
--- a/static/openbsd/man8/man8.i386/Makefile
+++ b/static/openbsd/man8/man8.i386/Makefile
@@ -1,4 +1,3 @@
-MAN = boot_i386.8 \
- MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.landisk/Makefile b/static/openbsd/man8/man8.landisk/Makefile
index a12ae7d7..c65e4547 100644
--- a/static/openbsd/man8/man8.landisk/Makefile
+++ b/static/openbsd/man8/man8.landisk/Makefile
@@ -1,3 +1,3 @@
-MAN = MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.loongson/Makefile b/static/openbsd/man8/man8.loongson/Makefile
index a12ae7d7..c65e4547 100644
--- a/static/openbsd/man8/man8.loongson/Makefile
+++ b/static/openbsd/man8/man8.loongson/Makefile
@@ -1,3 +1,3 @@
-MAN = MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.luna88k/Makefile b/static/openbsd/man8/man8.luna88k/Makefile
index 7b9b64d3..c65e4547 100644
--- a/static/openbsd/man8/man8.luna88k/Makefile
+++ b/static/openbsd/man8/man8.luna88k/Makefile
@@ -1,4 +1,3 @@
-MAN = boot_luna88k.8 \
- MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.macppc/Makefile b/static/openbsd/man8/man8.macppc/Makefile
index 02284efb..c65e4547 100644
--- a/static/openbsd/man8/man8.macppc/Makefile
+++ b/static/openbsd/man8/man8.macppc/Makefile
@@ -1,4 +1,3 @@
-MAN = boot_macppc.8 \
- MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.octeon/Makefile b/static/openbsd/man8/man8.octeon/Makefile
index a12ae7d7..c65e4547 100644
--- a/static/openbsd/man8/man8.octeon/Makefile
+++ b/static/openbsd/man8/man8.octeon/Makefile
@@ -1,3 +1,3 @@
-MAN = MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.powerpc64/Makefile b/static/openbsd/man8/man8.powerpc64/Makefile
index a12ae7d7..c65e4547 100644
--- a/static/openbsd/man8/man8.powerpc64/Makefile
+++ b/static/openbsd/man8/man8.powerpc64/Makefile
@@ -1,3 +1,3 @@
-MAN = MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.riscv64/Makefile b/static/openbsd/man8/man8.riscv64/Makefile
index a12ae7d7..c65e4547 100644
--- a/static/openbsd/man8/man8.riscv64/Makefile
+++ b/static/openbsd/man8/man8.riscv64/Makefile
@@ -1,3 +1,3 @@
-MAN = MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk
diff --git a/static/openbsd/man8/man8.sparc64/Makefile b/static/openbsd/man8/man8.sparc64/Makefile
index 59685cf6..c65e4547 100644
--- a/static/openbsd/man8/man8.sparc64/Makefile
+++ b/static/openbsd/man8/man8.sparc64/Makefile
@@ -1,4 +1,3 @@
-MAN = boot_sparc64.8 \
- MAKEDEV.8
+MAN = $(wildcard *.8)
include ../../../mandoc.mk