1.1 diff -r ba64dfca82e9 -r e2ef1c2f9eca Makefile 1.2 --- a/Makefile Thu Mar 13 08:03:11 2003 +0000 1.3 +++ b/Makefile Thu Mar 13 08:57:05 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 +# tumble: build a PDF file from image files 1.7 # Makefile 1.8 -# $Id: Makefile,v 1.28 2003/03/12 23:57:21 eric Exp $ 1.9 +# $Id: Makefile,v 1.29 2003/03/13 00:57:05 eric Exp $ 1.10 # Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.11 # 1.12 # This program is free software; you can redistribute it and/or modify 1.13 @@ -55,18 +55,18 @@ 1.14 # let me know why so I can improve this Makefile. 1.15 # ----------------------------------------------------------------------------- 1.16 1.17 -VERSION = 0.23 1.18 +VERSION = 0.24 1.19 1.20 -PACKAGE = t2p 1.21 +PACKAGE = tumble 1.22 1.23 -TARGETS = t2p 1.24 +TARGETS = tumble 1.25 1.26 -CSRCS = t2p.c semantics.c \ 1.27 +CSRCS = tumble.c semantics.c \ 1.28 bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \ 1.29 pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c \ 1.30 pdf_text.c pdf_g4.c pdf_jpeg.c 1.31 OSRCS = scanner.l parser.y 1.32 -HDRS = t2p.h semantics.h bitblt.h bitblt_tables.h \ 1.33 +HDRS = tumble.h semantics.h bitblt.h bitblt_tables.h \ 1.34 pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h 1.35 MISC = COPYING Makefile 1.36 1.37 @@ -85,7 +85,7 @@ 1.38 all: $(TARGETS) $(TEST_TARGETS) 1.39 1.40 1.41 -t2p: t2p.o scanner.o semantics.o parser.tab.o \ 1.42 +tumble: tumble.o scanner.o semantics.o parser.tab.o \ 1.43 bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \ 1.44 pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \ 1.45 pdf_text.o pdf_g4.o pdf_jpeg.o