1.1 diff -r 8400d97f798b -r 311726c12122 Makefile 1.2 --- a/Makefile Wed Mar 12 09:52:09 2003 +0000 1.3 +++ b/Makefile Wed Mar 12 10:57:06 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.23 2003/03/11 22:57:46 eric Exp $ 1.8 +# $Id: Makefile,v 1.24 2003/03/12 02:57:06 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 @@ -63,7 +63,8 @@ 1.13 1.14 CSRCS = t2p.c semantics.c \ 1.15 bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \ 1.16 - pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c pdf_g4.c 1.17 + pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c \ 1.18 + pdf_g4.c pdf_jpeg.c 1.19 OSRCS = scanner.l parser.y 1.20 HDRS = t2p.h semantics.h bitblt.h bitblt_tables.h \ 1.21 pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h 1.22 @@ -87,7 +88,7 @@ 1.23 t2p: t2p.o scanner.o semantics.o parser.tab.o \ 1.24 bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \ 1.25 pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \ 1.26 - pdf_g4.o 1.27 + pdf_g4.o pdf_jpeg.o 1.28 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ 1.29 ifndef DEBUG 1.30 strip $@