summaryrefslogtreecommitdiff
path: root/static/openbsd/man8/Makefile
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/Makefile
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/Makefile')
-rw-r--r--static/openbsd/man8/Makefile24
1 files changed, 1 insertions, 23 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
-