Alex Mikhalev 8d24829f67 Squashed 'components/u8g2/' content from commit 45ac4e0e
git-subtree-dir: components/u8g2
git-subtree-split: 45ac4e0edc76c6bc3d808304fccb73c543535ded
2019-01-15 20:36:08 -08:00

15 lines
198 B
Makefile

CFLAGS = -g -Wall
#CFLAGS = -O4 -Wall
SRC = png2bdf.c
OBJ = $(SRC:.c=.o)
png2bdf: $(OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o png2bdf -lpng
clean:
-rm $(OBJ) png2bdf
test:
./png2bdf *.png