1.1 diff -r 5fb9b9f7c2b8 -r 26f7edf15ef4 Makefile 1.2 --- a/Makefile Wed Mar 12 06:40:34 2003 +0000 1.3 +++ b/Makefile Wed Mar 12 06:57:46 2003 +0000 1.4 @@ -1,6 +1,6 @@ 1.5 # t2p: build a PDF file out of one or more TIFF Class F Group 4 files 1.6 # Makefile 1.7 -# $Id: Makefile,v 1.22 2003/03/11 22:39:22 eric Exp $ 1.8 +# $Id: Makefile,v 1.23 2003/03/11 22:57:46 eric Exp $ 1.9 # Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.10 # 1.11 # This program is free software; you can redistribute it and/or modify 1.12 @@ -73,9 +73,9 @@ 1.13 DISTNAME = $(PACKAGE)-$(VERSION) 1.14 1.15 1.16 -AUTO_CSRCS = scanner.c parser.tab.c bitblt_tables.c 1.17 -AUTO_HDRS = parser.tab.h g4_tables.h 1.18 -AUTO_MISC = parser.output bitblt_tables.h 1.19 +AUTO_CSRCS = scanner.c parser.tab.c bitblt_tables.c g4_tables.c 1.20 +AUTO_HDRS = parser.tab.h bitblt_tables.h g4_tables.h 1.21 +AUTO_MISC = parser.output 1.22 1.23 1.24 -include Maketest 1.25 @@ -85,7 +85,7 @@ 1.26 1.27 1.28 t2p: t2p.o scanner.o semantics.o parser.tab.o \ 1.29 - bitblt.o bitblt_g4.o bitblt_tables.o \ 1.30 + bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \ 1.31 pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \ 1.32 pdf_g4.o 1.33 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ 1.34 @@ -103,7 +103,10 @@ 1.35 bitblt_table_gen: bitblt_table_gen.o 1.36 1.37 g4_tables.h: g4_table_gen 1.38 - ./g4_table_gen >g4_tables.h 1.39 + ./g4_table_gen -h >g4_tables.h 1.40 + 1.41 +g4_tables.c: g4_table_gen 1.42 + ./g4_table_gen -c >g4_tables.c 1.43 1.44 g4_table_gen: g4_table_gen.o 1.45