2c5569d6ff
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.".
13 lines
187 B
Makefile
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>
|