blob: 817a085f5e2cc60ef7ccd1c15273e943119f237e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Extra source files for IS3731 lighting
SRC += TWIlib.c issi.c lighting.c
ifeq ($(strip $(ISSI_ENABLE)), yes)
OPT_DEFS += -DISSI_ENABLE
endif
ifeq ($(strip $(WATCHDOG_ENABLE)), yes)
OPT_DEFS += -DWATCHDOG_ENABLE
endif
ifeq ($(strip $(CAPSLOCK_LED)), yes)
OPT_DEFS += -DCAPSLOCK_LED
endif
|