uinput-mapper/Makefile
Merlijn Wajer 4a3011f08d Dependency fixes and config changes.
- config.h Makefile dependency
- Remove case statement
- Add extra argument that defines the in_type
- Updated configs.
2012-12-05 11:35:34 +01:00

17 lines
375 B
Makefile

.PHONY: default clean
CFLAGS+=-ansi -pedantic -Wall -Wextra -Werror -Wno-unused-result
CFLAGS+=-pipe -O2
CFLAGS+=-D_BSD_SOURCE
default: map
def_keys.h:
echo '#include <linux/input.h>' | gcc -E -dM - | grep '#define KEY_' | cut -f2 -d" " | sed 's/KEY_.*/DEF_KEY(&)/' > def_keys.h
map: map.c def_keys.h config.h
$(CC) map.c $(CFLAGS) -o map
clean:
rm -f map def_keys.h