diff options
| author | Fred Sundvik <fsundvik@gmail.com> | 2016-02-23 09:37:24 +0200 |
|---|---|---|
| committer | Fred Sundvik <fsundvik@gmail.com> | 2016-02-23 09:37:24 +0200 |
| commit | 725929ec8bb5d57b6c4f53fa7d15e04df15f2535 (patch) | |
| tree | 8cbb87a57db408659e440014e9a0f2737c895432 | |
| parent | c5db02925c6bf73ef1df1f718e09ff304266a535 (diff) | |
| download | qmk_firmware-725929ec8bb5d57b6c4f53fa7d15e04df15f2535.tar.gz qmk_firmware-725929ec8bb5d57b6c4f53fa7d15e04df15f2535.zip | |
Fix include paths for new tmk_core update
| -rw-r--r-- | visualizer.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/visualizer.mk b/visualizer.mk index eef2d5cc8..13c5d3158 100644 --- a/visualizer.mk +++ b/visualizer.mk | |||
| @@ -23,16 +23,16 @@ | |||
| 23 | GFXLIB = $(VISUALIZER_DIR)/ugfx | 23 | GFXLIB = $(VISUALIZER_DIR)/ugfx |
| 24 | ifdef LCD_ENABLE | 24 | ifdef LCD_ENABLE |
| 25 | include $(GFXLIB)/gfx.mk | 25 | include $(GFXLIB)/gfx.mk |
| 26 | OPT_DEFS += -DLCD_ENABLE | 26 | UDEFS += -DLCD_ENABLE |
| 27 | OPT_LIBS += -lm | 27 | ULIBS += -lm |
| 28 | endif | 28 | endif |
| 29 | SRC += $(GFXSRC) $(VISUALIZER_DIR)/visualizer.c | 29 | SRC += $(GFXSRC) $(VISUALIZER_DIR)/visualizer.c |
| 30 | INC += $(GFXINC) $(VISUALIZER_DIR) | 30 | UINCDIR += $(GFXINC) $(VISUALIZER_DIR) |
| 31 | 31 | ||
| 32 | ifdef LCD_BACKLIGHT_ENABLE | 32 | ifdef LCD_BACKLIGHT_ENABLE |
| 33 | SRC += $(VISUALIZER_DIR)/lcd_backlight.c | 33 | SRC += $(VISUALIZER_DIR)/lcd_backlight.c |
| 34 | SRC += lcd_backlight_hal.c | 34 | SRC += lcd_backlight_hal.c |
| 35 | OPT_DEFS += -DLCD_BACKLIGHT_ENABLE | 35 | UDEFS += -DLCD_BACKLIGHT_ENABLE |
| 36 | endif | 36 | endif |
| 37 | 37 | ||
| 38 | ifndef VISUALIZER_USER | 38 | ifndef VISUALIZER_USER |
