mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
bcc69ef934
This commit reintroduces code to 1) build src/keymap 2) test keymap/Makefile.am that it has all the key maps listed 3) test that all the key names in keymap/* are in <linux/input.h> 4) do a syntax check on rules/*.rules which now includes 95-keymap.rules and 95-keyboard-force-release.rules For #4, the regex expressions in rule-syntax-check.py had to be updated. They do not allow trailing comments via # comment, and I did not include that. A rule in 95-keymap.rules had to have its comment moved from the end to another line. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
20 lines
207 B
Makefile
20 lines
207 B
Makefile
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
SUBDIRS = \
|
|
src \
|
|
rules \
|
|
hwdb \
|
|
docs \
|
|
test
|
|
|
|
if ENABLE_KEYMAP
|
|
SUBDIRS += \
|
|
keymaps \
|
|
keymaps-force-release
|
|
endif
|
|
|
|
if ENABLE_MANPAGES
|
|
SUBDIRS += \
|
|
man
|
|
endif
|