all Makefiles rewritten.
[swftools.git] / pdf2swf / ttf2pt1 / Makefile.in
index 42343df..9cc1188 100644 (file)
@@ -1,7 +1,23 @@
-all:
-       gcc -c ft.c
-       gcc -c ttf.c
-       gcc -c pt1.c
-       gcc -c ttf2pt1.c
-       gcc -c t1asm.c
-       ar cru ttf2pt1.a ft.o ttf.o pt1.o ttf2pt1.o t1asm.o
+top_builddir = ../..
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+include ../../Makefile.common
+@SET_MAKE@
+
+all: libpdf.a
+
+%.o: %.c
+       $(C) -I./ -Wno-parentheses $< -o $@
+
+ttf2pt1_objects =  ft.o ttf.o pt1.o ttf2pt1.o t1asm.o
+
+libpdf.a: $(ttf2pt1_objects)
+       $(AR) r ttf2pt1.a $(ttf2pt1_objects)
+       $(RANLIB) ttf2pt1.a
+
+install:
+uninstall:
+
+clean: 
+       rm -f *.o *.lo *.a *.la
+