diff options
| author | Andreas Regel <andreas.regel@gmx.de> | 2015-04-20 20:33:21 +0200 |
|---|---|---|
| committer | Andreas Regel <andreas.regel@gmx.de> | 2016-04-01 23:44:13 +0200 |
| commit | ebc6ce5f34462c3c5b3a13901f7e5449abef1968 (patch) | |
| tree | 186ffb53d243785ab0d3ec3703b9926b26388b25 /glcddrivers/Makefile | |
| parent | b8977439a9e142cb870fd6bbe79dab152e93100d (diff) | |
| download | graphlcd-base-ebc6ce5f34462c3c5b3a13901f7e5449abef1968.tar.gz graphlcd-base-ebc6ce5f34462c3c5b3a13901f7e5449abef1968.tar.bz2 | |
Add driver for ILI9341 TFT display.
Diffstat (limited to 'glcddrivers/Makefile')
| -rw-r--r-- | glcddrivers/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/glcddrivers/Makefile b/glcddrivers/Makefile index dcf0c5f..e144698 100644 --- a/glcddrivers/Makefile +++ b/glcddrivers/Makefile @@ -40,7 +40,7 @@ ifeq ($(shell pkg-config --exists libusb && echo 1), 1) LIBS += $(shell pkg-config --libs libusb) DEFINES += -DHAVE_DRIVER_picoLCD_256x64 endif -endif +endif ifeq ($(HAVE_DRIVER_VNCSERVER), 1) ifeq ($(shell libvncserver-config --version >/dev/null && echo 1), 1) @@ -57,6 +57,12 @@ ifeq ($(HAVE_DRIVER_SSD1306), 1) LIBS += -lwiringPi endif +ifeq ($(HAVE_DRIVER_ILI9341), 1) + DEFINES += -DHAVE_DRIVER_ILI9341 + OBJS += ili9341.o + LIBS += -lwiringPi +endif + ### Implicit rules: %.o: %.c |
