1.1 --- a/Makefile Thu Mar 20 01:08:05 2003 +0000 1.2 +++ b/Makefile Thu Mar 20 06:54:08 2003 +0000 1.3 @@ -1,6 +1,6 @@ 1.4 # tumble: build a PDF file from image files 1.5 # Makefile 1.6 -# $Id: Makefile,v 1.34 2003/03/16 07:40:00 eric Exp $ 1.7 +# $Id: Makefile,v 1.35 2003/03/19 22:54:07 eric Exp $ 1.8 # Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.9 # 1.10 # This program is free software; you can redistribute it and/or modify 1.11 @@ -23,7 +23,7 @@ 1.12 # "0" value is considered true by make, so to disable conditionals comment 1.13 # them out or set them to a null string. 1.14 1.15 -#DEBUG=1 1.16 +DEBUG=1 1.17 #EFENCE=1 1.18 #STATIC=1 1.19 1.20 @@ -57,19 +57,20 @@ 1.21 # let me know why so I can improve this Makefile. 1.22 # ----------------------------------------------------------------------------- 1.23 1.24 -VERSION = 0.28 1.25 +VERSION = 0.29 1.26 1.27 PACKAGE = tumble 1.28 1.29 TARGETS = tumble 1.30 1.31 CSRCS = tumble.c semantics.c \ 1.32 + tumble_input.c tumble_tiff.c tumble_jpeg.c \ 1.33 bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \ 1.34 pdf.c pdf_util.c pdf_prim.c pdf_name_tree.c \ 1.35 pdf_bookmark.c pdf_page_label.c \ 1.36 pdf_text.c pdf_g4.c pdf_jpeg.c 1.37 OSRCS = scanner.l parser.y 1.38 -HDRS = tumble.h semantics.h bitblt.h bitblt_tables.h \ 1.39 +HDRS = tumble.h tumble_input.h semantics.h bitblt.h bitblt_tables.h \ 1.40 pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h 1.41 MISC = COPYING README INSTALL Makefile 1.42 1.43 @@ -90,7 +91,9 @@ 1.44 all: $(TARGETS) $(TEST_TARGETS) 1.45 1.46 1.47 -tumble: tumble.o scanner.o semantics.o parser.tab.o \ 1.48 +tumble: tumble.o semantics.o \ 1.49 + tumble_input.o tumble_tiff.o tumble_jpeg.o \ 1.50 + scanner.o parser.tab.o \ 1.51 bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \ 1.52 pdf.o pdf_util.o pdf_prim.o pdf_name_tree.o \ 1.53 pdf_bookmark.o pdf_page_label.o \