Skip to content

Commit 0e3d951

Browse files
committed
🔨 Update font scripts
1 parent 22e6365 commit 0e3d951

File tree

10 files changed

+1263
-104
lines changed

10 files changed

+1263
-104
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121

2222
# Generated files
2323
_Version.h
24-
bdf2u8g
24+
bdf2u8g.exe
25+
genpages.exe
2526
marlin_config.json
2627
mczip.h
2728
*.gen
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
CFLAGS = -g -Wall
2+
#CFLAGS = -O4 -Wall
3+
4+
SRC = bdf2u8g.c
5+
6+
OBJ = $(SRC:.c=.o)
7+
8+
bdf2u8g: $(OBJ)
9+
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o bdf2u8g.exe
10+
11+
clean:
12+
-rm $(OBJ) bdf2u8g.exe
13+
14+
test:
15+
./bdf2u8g.exe -f 2 ../bdf/9x18.bdf u8g_aafont_9x18 u8g_aafont_9x18.c

0 commit comments

Comments
 (0)