diff options
Diffstat (limited to 'sbin/kbd/Makefile')
-rw-r--r-- | sbin/kbd/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sbin/kbd/Makefile b/sbin/kbd/Makefile new file mode 100644 index 00000000000..10547528e3c --- /dev/null +++ b/sbin/kbd/Makefile @@ -0,0 +1,14 @@ +# $OpenBSD: Makefile,v 1.1 1996/04/22 20:21:54 hannken Exp $ +# @(#)Makefile 8.1 (Berkeley) 6/5/93 + +PROG= kbd +MAN= kbd.8 + +SRCS= main.c +.if ${MACHINE} == "i386" +SRCS+= kbd_i386.c +.else +SRCS+= kbd_void.c +.endif + +.include <bsd.prog.mk> |