]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/bocaj/rules.mk
Remove more commented out MCUs
[qmk_firmware.git] / users / bocaj / rules.mk
1 SRC += bocaj.c \
2        process_records.c
3
4 ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
5   SRC += secrets.c
6 endif
7
8 ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
9   SRC += tap_dances.c
10 endif
11
12 # Caused problems when building via docker on Mac OS
13 # EXTRAFLAGS += -flto
14
15 ifeq ($(strip $(NO_SECRETS)), yes)
16     OPT_DEFS += -DNO_SECRETS
17 endif
18
19 ifeq ($(strip $(MACROS_ENABLED)), yes)
20     OPT_DEFS += -DMACROS_ENABLED
21 endif
22
23 ifeq ($(strip $(UCIS_ENABLE)), yes)
24   SRC += send_unicode.c
25 endif
26
27 ifeq ($(strip $(UNICODEMAP_ENABLE)), yes)
28   SRC += send_unicode.c
29 endif
30
31 ifeq ($(strip $(UNICODE_ENABLE)), yes)
32   SRC += send_unicode.c
33 endif