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