blob: 0e8c09341c7f4a19abcb4a99b1e0a03f580190ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
rem file to build ttf2pt1 with Visual C++
cl -DWINDOWS -c bdf.c
cl -DWINDOWS -c ttf2pt1.c
cl -DWINDOWS -c pt1.c
cl -DWINDOWS -c ttf.c
cl -DWINDOWS -c t1asm.c
cl -DWINDOWS -c bitmap.c
cl -o ttf2pt1 ttf2pt1.obj pt1.obj t1asm.obj ttf.obj bdf.obj bitmap.obj
cl -o t1asm -DWINDOWS -DSTANDALONE t1asm.c
|