mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-07 19:06:30 +00:00
14 lines
216 B
Makefile
Executable File
14 lines
216 B
Makefile
Executable File
CFLAGS=-c -Wall -O2 -I../src -D__LINUX__
|
|
LIBS = -lm -lpthread
|
|
|
|
all: jpegdec
|
|
|
|
jpegdec: main.o
|
|
$(CC) main.o $(LIBS) -o jpegdec
|
|
|
|
main.o: main.c ../src/JPEGDEC.h makefile
|
|
$(CC) $(CFLAGS) main.c
|
|
|
|
clean:
|
|
rm *.o jpegdec
|