90e655ea4e
These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
24 lines
370 B
Makefile
24 lines
370 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= kbdio
|
|
NOMAN= #true
|
|
SRCS= kbdio.y lex.l y.tab.h
|
|
|
|
CFLAGS+= -I${.OBJDIR} -I${.CURDIR} #-g
|
|
|
|
#YACC= bison
|
|
#YFLAGS+= -yd # Bison only
|
|
|
|
YFLAGS+= -v # verbose
|
|
LFLAGS+= -I
|
|
|
|
DPADD= ${LIBM} ${LIBY} ${LIBL}
|
|
LDADD= -lm -ly -ll
|
|
|
|
CLEANFILES+= y.output # comment file from bison
|
|
|
|
install:
|
|
@${ECHO} "kbdio is not installed automatically ...."
|
|
|
|
.include <bsd.prog.mk>
|