summaryrefslogtreecommitdiff
path: root/usr.bin/tic/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/tic/Makefile')
-rw-r--r--usr.bin/tic/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/tic/Makefile b/usr.bin/tic/Makefile
index 21e206e8ed8..ee7a3e60f3e 100644
--- a/usr.bin/tic/Makefile
+++ b/usr.bin/tic/Makefile
@@ -1,14 +1,14 @@
-# $OpenBSD: Makefile,v 1.4 2007/02/27 21:07:40 miod Exp $
+# $OpenBSD: Makefile,v 1.5 2011/06/23 22:46:12 schwarze Exp $
PROG= tic
SRCS= dump_entry.c tic.c
-MAN= tic.1 captoinfo.1tbl infotocap.1
+MAN= tic.1 captoinfo.1 infotocap.1
LINKS= ${BINDIR}/tic ${BINDIR}/infotocap ${BINDIR}/tic ${BINDIR}/captoinfo
DPADD= ${LIBCURSES}
LDADD= -lcurses
CURSES= ${.CURDIR}/../../lib/libcurses
CFLAGS+= -I${CURSES} -I${.CURDIR} -I.
-CLEANFILES+= termsort.c
+CLEANFILES+= termsort.c captoinfo.1
.if (${MACHINE_ARCH} == sh)
COPTS+= -O1
@@ -19,4 +19,7 @@ beforedepend: termsort.c
termsort.c: MKtermsort.sh
sh ${.CURDIR}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
+captoinfo.1: captoinfo.1tbl
+ cp ${.ALLSRC} ${.TARGET}
+
.include <bsd.prog.mk>