diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-03-20 18:36:13 +0100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-03-20 18:36:13 +0100 |
commit | 708f95a472327e25355b28899fbd13d89f6925f5 (patch) | |
tree | c6da0ee979f357001d1c30ae4f8579e1e7427e30 /keyboard/planck/Makefile | |
parent | afa0f9d0aa08c7476bd63f3a478a6ea849b96e05 (diff) | |
download | qmk_firmware-708f95a472327e25355b28899fbd13d89f6925f5.tar.gz qmk_firmware-708f95a472327e25355b28899fbd13d89f6925f5.tar.xz |
working extended keymap
Diffstat (limited to 'keyboard/planck/Makefile')
-rw-r--r-- | keyboard/planck/Makefile | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/keyboard/planck/Makefile b/keyboard/planck/Makefile index 001f17f31..3716f0db9 100644 --- a/keyboard/planck/Makefile +++ b/keyboard/planck/Makefile @@ -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 |