diff options
Diffstat (limited to 'converter/adb_usb/Makefile')
-rw-r--r-- | converter/adb_usb/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/converter/adb_usb/Makefile b/converter/adb_usb/Makefile index 2114167424..73cae8ab30 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 |