working extended keymap

This commit is contained in:
Jack Humbert 2015-03-20 13:36:13 -04:00
parent afa0f9d0aa
commit 708f95a472
8 changed files with 542 additions and 6 deletions

View file

@ -47,16 +47,28 @@ TOP_DIR = ../..
# Directory keyboard dependent files exist
TARGET_DIR = .
# # project specific files
# SRC = keymap_common.c \
# matrix_handwire.c \
# led.c \
# backlight.c
# ifdef KEYMAP
# SRC := keymap_$(KEYMAP).c $(SRC)
# else
# SRC := keymap_jack.c $(SRC)
# endif
# project specific files
SRC = keymap_common.c \
matrix.c \
SRC = extended_keymap_common.c \
matrix_handwire.c \
led.c \
backlight.c
ifdef KEYMAP
SRC := keymap_$(KEYMAP).c $(SRC)
SRC := extended_keymap_$(KEYMAP).c $(SRC)
else
SRC := keymap_jack.c $(SRC)
SRC := extended_keymap_jack.c $(SRC)
endif
CONFIG_H = config.h