mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 01:55:19 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
19 lines
385 B
Makefile
19 lines
385 B
Makefile
PACKAGE= console-tools
|
|
PROG= kbdcontrol
|
|
MAN= kbdcontrol.1 kbdmap.5
|
|
MLINKS= kbdmap.5 keymap.5
|
|
SRCS= kbdcontrol.c lex.l
|
|
|
|
WARNS?= 4
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
.ifdef BOOTSTRAPPING
|
|
# Provide minimal load and dump functionality
|
|
CFLAGS+= -DBOOTSTRAP_KBDCONTROL
|
|
.else
|
|
# temporarily added for pre-Unicode accent key API/ABI compatibility
|
|
CFLAGS+= -DCOMPAT_FREEBSD13
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|