mirror of
https://github.com/arendst/Tasmota.git
synced 2026-03-08 08:17:36 +01:00
14 lines
247 B
Makefile
Executable File
14 lines
247 B
Makefile
Executable File
CFLAGS=-c -Wall -O2 -ggdb -I../src -D__LINUX__
|
|
LIBS = -lJPEGDEC -lbb_spi_lcd -lgpiod -lm -lpthread
|
|
|
|
all: showimg
|
|
|
|
showimg: showimg.o
|
|
$(CC) showimg.o $(LIBS) -o showimg
|
|
|
|
showimg.o: showimg.cpp
|
|
$(CXX) $(CFLAGS) showimg.cpp
|
|
|
|
clean:
|
|
rm *.o showimg
|