FreeType 1.31.1

This commit is contained in:
2023-08-27 18:03:45 +02:00
commit 5edbb7a80a
454 changed files with 173977 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Makefile for ttf2pfb and t1asm
all: ttf2pfb.exe t1asm.exe
ttf2pfb.exe: ttf2pfb.o
gcc -O -o ttf2pfb.exe ttf2pfb.o -lttf
ttf2pfb.o: ttf2pfb.c
gcc -O -c ttf2pfb.c
t1asm.exe: t1asm.o
gcc -O -o t1asm.exe t1asm.o -lttf
t1asm.o: t1asm.c
gcc -O -c t1asm.c