aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-09 15:48:42 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-09 15:48:42 -0400
commitf6684a2134ecc4959011955e89abb6103dd2eb2f (patch)
tree7fdc43bbd8ea2211334642e28d7257864dc9ffa5
parentbab50b71e2b102e5d7257ebb95d2f0cfd3894cae (diff)
downloadapple_cmds-f6684a2134ecc4959011955e89abb6103dd2eb2f.tar.gz
apple_cmds-f6684a2134ecc4959011955e89abb6103dd2eb2f.tar.zst
apple_cmds-f6684a2134ecc4959011955e89abb6103dd2eb2f.zip
doc_cmds: Add makefiles
-rw-r--r--doc_cmds/Makefile5
-rw-r--r--doc_cmds/checknr/Makefile3
-rw-r--r--doc_cmds/colcrt/Makefile3
-rw-r--r--doc_cmds/makewhatis/Makefile8
4 files changed, 19 insertions, 0 deletions
diff --git a/doc_cmds/Makefile b/doc_cmds/Makefile
new file mode 100644
index 0000000..ea362db
--- /dev/null
+++ b/doc_cmds/Makefile
@@ -0,0 +1,5 @@
+SUBDIR= checknr \
+ colcrt \
+ makewhatis
+
+.include <bsd.subdir.mk>
diff --git a/doc_cmds/checknr/Makefile b/doc_cmds/checknr/Makefile
new file mode 100644
index 0000000..b5cf5d3
--- /dev/null
+++ b/doc_cmds/checknr/Makefile
@@ -0,0 +1,3 @@
+PROG= checknr
+
+.include <bsd.prog.mk>
diff --git a/doc_cmds/colcrt/Makefile b/doc_cmds/colcrt/Makefile
new file mode 100644
index 0000000..923684c
--- /dev/null
+++ b/doc_cmds/colcrt/Makefile
@@ -0,0 +1,3 @@
+PROG= colcrt
+
+.include <bsd.prog.mk>
diff --git a/doc_cmds/makewhatis/Makefile b/doc_cmds/makewhatis/Makefile
new file mode 100644
index 0000000..af5e87e
--- /dev/null
+++ b/doc_cmds/makewhatis/Makefile
@@ -0,0 +1,8 @@
+PROG= makewhatis
+MAN= makewhatis.8 makewhatis.local.8
+SCRIPTS= makewhatis.local.sh
+SCRIPTSDIR=/usr/libexec/
+
+LDADD=-lz
+
+.include <bsd.prog.mk>