Fix include paths for new tmk_core update

This commit is contained in:
Fred Sundvik 2016-02-23 09:37:24 +02:00
parent c5db02925c
commit 725929ec8b
1 changed files with 4 additions and 4 deletions

View File

@ -23,16 +23,16 @@
GFXLIB = $(VISUALIZER_DIR)/ugfx
ifdef LCD_ENABLE
include $(GFXLIB)/gfx.mk
OPT_DEFS += -DLCD_ENABLE
OPT_LIBS += -lm
UDEFS += -DLCD_ENABLE
ULIBS += -lm
endif
SRC += $(GFXSRC) $(VISUALIZER_DIR)/visualizer.c
INC += $(GFXINC) $(VISUALIZER_DIR)
UINCDIR += $(GFXINC) $(VISUALIZER_DIR)
ifdef LCD_BACKLIGHT_ENABLE
SRC += $(VISUALIZER_DIR)/lcd_backlight.c
SRC += lcd_backlight_hal.c
OPT_DEFS += -DLCD_BACKLIGHT_ENABLE
UDEFS += -DLCD_BACKLIGHT_ENABLE
endif
ifndef VISUALIZER_USER