X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fttf2pt1%2FMakefile.in;h=9cc11888859f9c1d586fbd2464c7b2d1fc79d7a9;hb=19054cb97d231d666a6a50e993fa0ad086c9e26e;hp=42343dfd68b4dd43bafd3536c03bfa0cdf63c8f1;hpb=92c5f229fdf4d1a1d1efd8205dae033e70d07a1a;p=swftools.git diff --git a/pdf2swf/ttf2pt1/Makefile.in b/pdf2swf/ttf2pt1/Makefile.in index 42343df..9cc1188 100644 --- a/pdf2swf/ttf2pt1/Makefile.in +++ b/pdf2swf/ttf2pt1/Makefile.in @@ -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 +