From ed8cf12d25d5052cf583b162ec70b0be93270c1e Mon Sep 17 00:00:00 2001 From: tmk Date: Wed, 21 May 2014 02:43:19 +0900 Subject: Add ISO keymap(issue #35) and use new keymap API --- converter/adb_usb/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'converter/adb_usb/Makefile') diff --git a/converter/adb_usb/Makefile b/converter/adb_usb/Makefile index 211416742..73cae8ab3 100644 --- a/converter/adb_usb/Makefile +++ b/converter/adb_usb/Makefile @@ -48,11 +48,17 @@ TOP_DIR = ../.. TARGET_DIR = . # project specific files -SRC = keymap.c \ +SRC = keymap_common.c \ matrix.c \ led.c \ adb.c +ifdef KEYMAP + SRC := keymap_$(KEYMAP).c $(SRC) +else + SRC := keymap_ansi.c $(SRC) +endif + CONFIG_H = config.h -- cgit v1.2.3