diff options
author | tmk <nobody@nowhere> | 2013-11-29 08:42:40 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-11-29 09:12:28 +0900 |
commit | fd7833388cdf8b15728d951b63e78571ba2edbc9 (patch) | |
tree | b146719ffc79ad5f48076e1e3a77929f4e8e19b6 /keyboard/hhkb/Makefile | |
parent | d2a83dae8f69f966b47db0316f1580793a810078 (diff) |
Add new keymap framework
Diffstat (limited to 'keyboard/hhkb/Makefile')
-rw-r--r-- | keyboard/hhkb/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/keyboard/hhkb/Makefile b/keyboard/hhkb/Makefile index 94078702c4..89d05ba159 100644 --- a/keyboard/hhkb/Makefile +++ b/keyboard/hhkb/Makefile @@ -49,10 +49,16 @@ TARGET_DIR = . # List C source files here. (C dependencies are automatically generated.) -SRC += keymap.c \ +SRC += keymap_common.c \ matrix.c \ led.c +ifdef KEYMAP + SRC := keymap_$(KEYMAP).c $(SRC) +else + SRC := keymap_hasu.c $(SRC) +endif + CONFIG_H = config.h |