added gmon.out to clean target
[swftools.git] / pdf2swf / ttf2pt1 / Makefile.in
1 top_builddir = ../..
2 srcdir = @srcdir@
3 top_srcdir = @top_srcdir@
4 include ../../Makefile.common
5
6 all: libpdf.a
7
8 ttf2pt1_objects =  ft.o ttf.o pt1.o ttf2pt1.o t1asm.o bdf.o bitmap.o
9
10 ft.o: ft.c
11         $(C) -I./ -Wno-parentheses ft.c -o $@
12 ttf.o: ttf.c
13         $(C) -I./ -Wno-parentheses ttf.c -o $@
14 pt1.o: pt1.c
15         $(C) -I./ -Wno-parentheses pt1.c -o $@
16 ttf2pt1.o: ttf2pt1.c
17         $(C) -I./ -Wno-parentheses ttf2pt1.c -o $@
18 t1asm.o: t1asm.c
19         $(C) -I./ -Wno-parentheses t1asm.c -o $@
20 bitmap.o: bitmap.c
21         $(C) -I./ -Wno-parentheses bitmap.c -o $@
22 bdf.o: bdf.c
23         $(C) -I./ -Wno-parentheses bdf.c -o $@
24
25 libpdf.a: $(ttf2pt1_objects)
26         $(AR) r ttf2pt1.a $(ttf2pt1_objects)
27         $(RANLIB) ttf2pt1.a
28
29 install:
30 uninstall:
31
32 clean: 
33         rm -f *.o *.lo *.a *.la gmon.out
34