diff options
author | bde <bde@FreeBSD.org> | 2000-09-14 05:29:42 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2000-09-14 05:29:42 +0000 |
commit | 428d9ab0cbdbb555b03ac0904e30297ef554d8ef (patch) | |
tree | a0abbc0a9ab974e242110f4f4d94c984467f8355 /usr.sbin/kbdcontrol/Makefile | |
parent | 8398c317cfb93533636aad87497cde6ec71f385f (diff) | |
download | FreeBSD-src-428d9ab0cbdbb555b03ac0904e30297ef554d8ef.zip FreeBSD-src-428d9ab0cbdbb555b03ac0904e30297ef554d8ef.tar.gz |
Fixed breakage of installation of kbdcontrol.1 in previous commit.
Fixed style bugs.
Diffstat (limited to 'usr.sbin/kbdcontrol/Makefile')
-rw-r--r-- | usr.sbin/kbdcontrol/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/kbdcontrol/Makefile b/usr.sbin/kbdcontrol/Makefile index 90cfb6a..4732e94 100644 --- a/usr.sbin/kbdcontrol/Makefile +++ b/usr.sbin/kbdcontrol/Makefile @@ -1,8 +1,10 @@ # $FreeBSD$ + PROG= kbdcontrol SRCS= kbdcontrol.c lex.l +MAN1= kbdcontrol.1 MAN5= kbdmap.5 -DPADD+= ${LIBL} -LDADD+= -ll +DPADD= ${LIBL} +LDADD= -ll .include <bsd.prog.mk> |