|
Revision 13, 234 bytes
(checked in by sven, 4 years ago)
|
|
Greatly improved the papertapefont algorithms and routines. Now even tested.
Everything compiles with "-Wall -O2" and is, of course, very performant :-)
Added detailed documentation in FONT_FILES.txt.
-- Sven @ dual head workstation
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | CFLAGS=-Wall -O2 |
|---|
| 4 | |
|---|
| 5 | ptfont: papertapefont.o |
|---|
| 6 | gcc $(CFLAGS) -o ptfont papertapefont.c -DSTANDALONE |
|---|
| 7 | |
|---|
| 8 | papertapefont.o: papertapefont.c papertapefont.h |
|---|
| 9 | gcc $(CFLAGS) -c papertapefont.c |
|---|
| 10 | |
|---|
| 11 | clean: |
|---|
| 12 | rm ptfont *.o |
|---|