summaryrefslogtreecommitdiff
path: root/usr.bin/tic/Makefile
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-07-24 19:37:36 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-07-24 19:37:36 +0000
commit1baaf51add422465d3e14b116f559c29a87ba500 (patch)
tree62c0cb4ce9f86bdbdca9e88242d6ad6064bd03ea /usr.bin/tic/Makefile
parent7401c2698a2ad4213ea322dab186d8da5b40e871 (diff)
tic/captoinfo/infotocap from ncurses-4.2-980718
Diffstat (limited to 'usr.bin/tic/Makefile')
-rw-r--r--usr.bin/tic/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.bin/tic/Makefile b/usr.bin/tic/Makefile
new file mode 100644
index 00000000000..18854b6871c
--- /dev/null
+++ b/usr.bin/tic/Makefile
@@ -0,0 +1,17 @@
+# $OpenBSD: Makefile,v 1.1 1998/07/24 19:37:33 millert Exp $
+
+PROG= tic
+SRCS= dump_entry.c tic.c
+MAN= tic.1 captoinfo.1tbl
+LINKS= ${BINDIR}/tic ${BINDIR}/infotocap ${BINDIR}/tic ${BINDIR}/captoinfo
+DPADD= ${LIBCURSES}
+LDADD= -lcurses
+CURSES= ${.CURDIR}/../../lib/libcurses
+CFLAGS+= -I${CURSES} -I${.CURDIR} -I.
+
+beforedepend: termsort.c
+
+termsort.c: MKtermsort.sh
+ sh ${.CURDIR}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
+
+.include <bsd.prog.mk>