Makefile

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