Initial commit

This commit is contained in:
2024-10-25 21:01:00 +02:00
parent 3f7932870d
commit 42a09c0a91
2865 changed files with 1662903 additions and 0 deletions

View File

@ -0,0 +1,15 @@
CFLAGS = -g -Wall
#CFLAGS = -O4 -Wall
SRC = bdf2u8g.c
OBJ = $(SRC:.c=.o)
bdf2u8g: $(OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o bdf2u8g.exe
clean:
-rm $(OBJ) bdf2u8g.exe
test:
./bdf2u8g.exe -f 2 ../bdf/9x18.bdf u8g_aafont_9x18 u8g_aafont_9x18.c