NetBSD/x11/bin/xkbevd/Makefile
lukem 5906faf133 Explicitly add -I/path/to/dist/src so that any yacc-generated .c files
in the .OBJDIR compile correctly.

(Something I changed in the last commit must have broken this.
Or make(1) changed.  Or something else borked.  In any case, it's fixed now.)
2003-09-23 11:04:45 +00:00

16 lines
365 B
Makefile

# $NetBSD: Makefile,v 1.3 2003/09/23 11:04:47 lukem Exp $
.include <bsd.own.mk>
PROG= xkbevd
SRCS= xkbevd.c cfgscan.c cfgparse.y evargs.c printev.c utils.c
CPPFLAGS+=-I${X11SRCDIR.xc}/programs/${PROG}
LDADD+= -lxkbfile -lXext -lX11
DPADD+= ${LIBXKBFILE} ${LIBXEXT} ${LIBX11}
.PATH: ${X11SRCDIR.xc}/programs/${PROG}
.include <bsd.x11.mk>
.include <bsd.prog.mk>