summaryrefslogtreecommitdiffstats
path: root/share/tmac/Makefile
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1995-10-18 08:37:01 +0000
committerderaadt <deraadt@openbsd.org>1995-10-18 08:37:01 +0000
commitdf930be708d50e9715f173caa26ffe1b7599b157 (patch)
treeaa317e49e28cb999c9cf3db7f00c20903fe6010a /share/tmac/Makefile
downloadwireguard-openbsd-df930be708d50e9715f173caa26ffe1b7599b157.tar.xz
wireguard-openbsd-df930be708d50e9715f173caa26ffe1b7599b157.zip
initial import of NetBSD tree
Diffstat (limited to 'share/tmac/Makefile')
-rw-r--r--share/tmac/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/share/tmac/Makefile b/share/tmac/Makefile
new file mode 100644
index 00000000000..63aa915e416
--- /dev/null
+++ b/share/tmac/Makefile
@@ -0,0 +1,27 @@
+# from: @(#)Makefile 6.13 (Berkeley) 3/20/91
+# $Id: Makefile,v 1.1.1.1 1995/10/18 08:44:49 deraadt Exp $
+
+BINDIR= /usr/share
+FILES= tmac.andoc
+MSRCS= doc doc-ditroff doc-common doc-nroff doc-syms
+LINKS= ${BINDIR}/tmac/tmac.andoc ${BINDIR}/tmac/tmac.an
+NOOBJ= noobj
+
+STRIP_SED = ../me/strip.sed
+
+# old macros not currently installed...
+OFILES= tmac.an.v6compat tmac.an6n tmac.an6t tmac.a tmac.cp tmac.doc.old
+
+all clean cleandir depend lint tags:
+
+realinstall:
+ for i in ${MSRCS}; do \
+ rm -f ${DESTDIR}${BINDIR}/tmac/tmac.$$i; \
+ sed -f ${STRIP_SED} < $$i > ${DESTDIR}${BINDIR}/tmac/tmac.$$i; \
+ chown ${BINOWN}:${BINGRP} ${DESTDIR}${BINDIR}/tmac/tmac.$$i; \
+ chmod 444 ${DESTDIR}${BINDIR}/tmac/tmac.$$i; \
+ done
+ install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
+ ${DESTDIR}${BINDIR}/tmac
+
+.include <bsd.prog.mk>