mirror of
https://github.com/antirez/uc8151_micropython.git
synced 2025-12-10 06:28:12 +08:00
8 lines
174 B
Makefile
8 lines
174 B
Makefile
all: png2gs8
|
|
|
|
png2gs8: png2gs8.c
|
|
$(CC) -O2 png2gs8.c `libpng-config --cflags` `libpng-config --L_opts` `libpng-config --libs` -lm -o png2gs8 -Wall -W
|
|
|
|
clean:
|
|
rm -f png2gs8
|