-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
030559b
commit 6a8ebdd
Showing
10 changed files
with
1,263 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,8 @@ | |
|
||
# Generated files | ||
_Version.h | ||
bdf2u8g | ||
bdf2u8g.exe | ||
genpages.exe | ||
marlin_config.json | ||
mczip.h | ||
*.gen | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.