diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-06-23 22:46:14 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-06-23 22:46:14 +0000 |
commit | 6df0b771ebcb3566414373edef220a0f6a17efbf (patch) | |
tree | 060687da02a3942a5d62fad96ed7361473923eca /usr.bin/infocmp | |
parent | 3aaf059f30fb2abae9da3dd76d1cdde748e7fed7 (diff) |
switch to installing source manuals (base part)
discussed with lots of people, tested by naddy@,
"move fast" deraadt@
Diffstat (limited to 'usr.bin/infocmp')
-rw-r--r-- | usr.bin/infocmp/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/infocmp/Makefile b/usr.bin/infocmp/Makefile index 6ed9d56c529..cd9407e9bf2 100644 --- a/usr.bin/infocmp/Makefile +++ b/usr.bin/infocmp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2000/02/20 21:50:18 millert Exp $ +# $OpenBSD: Makefile,v 1.3 2011/06/23 22:46:12 schwarze Exp $ PROG= infocmp SRCS= infocmp.c dump_entry.c @@ -7,7 +7,7 @@ LDADD= -lcurses CURSES= ${.CURDIR}/../../lib/libcurses TIC= ${.CURDIR}/../tic CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I. -CLEANFILES+= termsort.c +CLEANFILES+= termsort.c infocmp.1 .PATH: ${TIC} beforedepend: termsort.c @@ -15,4 +15,7 @@ beforedepend: termsort.c termsort.c: ${TIC}/MKtermsort.sh sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET} +infocmp.1: infocmp.1tbl + cp ${.ALLSRC} ${.TARGET} + .include <bsd.prog.mk> |