mirror of
https://github.com/moparisthebest/uinput-mapper
synced 2024-11-11 19:25:00 -05:00
11 lines
450 B
Makefile
11 lines
450 B
Makefile
.PHONY: default clean
|
|
|
|
|
|
default: uinputmapper/uinput_gen.py
|
|
|
|
clean:
|
|
rm uinput_gen.py -f
|
|
|
|
uinputmapper/uinput_gen.py:
|
|
gcc -E -dM /usr/include/linux/input.h | egrep ' (EV|SYN|KEY|BTN|REL|ABS|MSC|LED|SND|REP|SW)_[A-Za-z0-9_]+' | ( echo "#include <linux/input.h>" ; echo "input_constants_dict = {" ; sed -r 's/[^ ]+ +([^ ]+).*/"\1" : \1,/' ; echo "}" ) | gcc -E -o /dev/stdout - | grep 'input_constants_dict = {' -A 100000 > uinputmapper/uinput_gen.py
|