freebsd-dev/usr.sbin/kbdcontrol/Makefile
David E. O'Brien 2c5569d6ff The GCC 2.96 snapshots have slightly different rules for finding include
files.  Mostly -I${.CURDIR} was needed -- especially for YACC generated
files as the new cpp does not look in the ultimate source file
(ie, the .y file)'s directory as told by the "#line" directive.  Some were
misspellings of "-I${.CURDIR}" as "-I.".
2000-12-01 09:39:28 +00:00

13 lines
187 B
Makefile

# $FreeBSD$
PROG= kbdcontrol
SRCS= kbdcontrol.c lex.l
CFLAGS+= -I${.CURDIR}
MAN1= kbdcontrol.1
MAN5= kbdmap.5
MLINKS= kbdmap.5 keymap.5
DPADD= ${LIBL}
LDADD= -ll
.include <bsd.prog.mk>