freebsd-dev/usr.sbin/pcvt/kbdio/Makefile
David E. O'Brien 90e655ea4e Perform a major cleanup of the usr.sbin Makefiles.
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.
2001-07-20 06:20:32 +00:00

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>