Makefile

changeset 157
160d624271cc
parent 156
745483d15215
child 158
e5452e27f518
     1.1 --- a/Makefile	Tue Mar 25 09:38:08 2003 +0000
     1.2 +++ b/Makefile	Thu Apr 10 08:47:30 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.39 2003/03/25 01:38:08 eric Exp $
     1.7 +# $Id: Makefile,v 1.40 2003/04/10 00:47:30 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 @@ -30,7 +30,7 @@
    1.12  
    1.13  CFLAGS = -Wall
    1.14  LDFLAGS =
    1.15 -LDLIBS = -ltiff -ljpeg -lz -lm
    1.16 +LDLIBS = -ltiff -ljpeg -lpbm -lz -lm
    1.17  
    1.18  ifdef DEBUG
    1.19  CFLAGS := $(CFLAGS) -g
    1.20 @@ -57,14 +57,14 @@
    1.21  # let me know why so I can improve this Makefile.
    1.22  # -----------------------------------------------------------------------------
    1.23  
    1.24 -VERSION = 0.32
    1.25 +VERSION = 0.33
    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 +	tumble_input.c tumble_tiff.c tumble_jpeg.c tumble_pbm.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 @@ -92,7 +92,7 @@
    1.38  
    1.39  
    1.40  tumble: tumble.o semantics.o \
    1.41 -		tumble_input.o tumble_tiff.o tumble_jpeg.o \
    1.42 +		tumble_input.o tumble_tiff.o tumble_jpeg.o tumble_pbm.o \
    1.43  		scanner.o parser.tab.o \
    1.44  		bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \
    1.45  		pdf.o pdf_util.o pdf_prim.o pdf_name_tree.o \