FreeBSD fixes.
[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
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
21 libpdf.a: $(ttf2pt1_objects)
22         $(AR) r ttf2pt1.a $(ttf2pt1_objects)
23         $(RANLIB) ttf2pt1.a
24
25 install:
26 uninstall:
27
28 clean: 
29         rm -f *.o *.lo *.a *.la
30