NetBSD/sbin/wsconsctl/Makefile
lukem 130ab7336b Rework how MAKEVERBOSE operates:
*	Don't bother prefixing commands with a line of  ${_MKCMD}\
	and instead rely upon "make -s".  This is less intrusive on
	all the Makefiles than the former.  Idea from David Laight.

    *	Rename the variables use to print messages.  The scheme now is:
	    _MKMSG_FOO		Run  _MKMSG 'foo'
	    _MKTARGET_FOO	Run  _MKMSG_FOO ${.TARGET}
	From discussion with Alistair Crooks.
2003-10-21 10:01:19 +00:00

19 lines
474 B
Makefile

# $NetBSD: Makefile,v 1.10 2003/10/21 10:01:20 lukem Exp $
PROG= wsconsctl
SRCS= display.c keyboard.c keysym.c map_parse.y map_scan.l \
mouse.c util.c wsconsctl.c
MAN= wsconsctl.8
YHEADER= 1
CPPFLAGS+= -I. -I${.CURDIR}
DPSRCS+= keysym.h
CLEANFILES+= keysym.h
.include <bsd.prog.mk>
keysym.h: mkkeysym.sh ${DESTDIR}/usr/include/dev/wscons/wsksymdef.h
${_MKTARGET_CREATE}
${HOST_SH} ${.CURDIR}/mkkeysym.sh \
${DESTDIR}/usr/include/dev/wscons/wsksymdef.h > keysym.h