mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-12 11:34:38 +00:00
updated makefile
This commit is contained in:
parent
71f7713739
commit
bf1987e233
1 changed files with 15 additions and 9 deletions
|
@ -48,18 +48,22 @@ TOP_DIR = ../..
|
||||||
TARGET_DIR = .
|
TARGET_DIR = .
|
||||||
|
|
||||||
# # project specific files
|
# # project specific files
|
||||||
# SRC = keymap_common.c \
|
ifdef COMMON
|
||||||
# matrix_handwire.c \
|
SRC = keymap_common.c \
|
||||||
# led.c \
|
matrix_handwire.c \
|
||||||
# backlight.c
|
led.c \
|
||||||
|
backlight.c
|
||||||
|
|
||||||
# ifdef KEYMAP
|
ifdef KEYMAP
|
||||||
# SRC := keymap_$(KEYMAP).c $(SRC)
|
SRC := keymap_$(KEYMAP).c $(SRC)
|
||||||
# else
|
else
|
||||||
# SRC := keymap_jack.c $(SRC)
|
SRC := keymap_jack.c $(SRC)
|
||||||
# endif
|
endif
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
# project specific files
|
# project specific files
|
||||||
|
|
||||||
SRC = extended_keymap_common.c \
|
SRC = extended_keymap_common.c \
|
||||||
matrix_handwire.c \
|
matrix_handwire.c \
|
||||||
led.c \
|
led.c \
|
||||||
|
@ -71,6 +75,8 @@ else
|
||||||
SRC := extended_keymap_jack.c $(SRC)
|
SRC := extended_keymap_jack.c $(SRC)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
CONFIG_H = config.h
|
CONFIG_H = config.h
|
||||||
|
|
||||||
# MCU name
|
# MCU name
|
||||||
|
|
Loading…
Reference in a new issue