Makefile

changeset 119
cbc382d73a86
parent 117
129e16d9b5f4
child 125
e2ef1c2f9eca
     1.1 --- a/Makefile	Thu Mar 13 06:56:57 2003 +0000
     1.2 +++ b/Makefile	Thu Mar 13 07:57:21 2003 +0000
     1.3 @@ -1,6 +1,6 @@
     1.4  # t2p: build a PDF file out of one or more TIFF Class F Group 4 files
     1.5  # Makefile
     1.6 -# $Id: Makefile,v 1.27 2003/03/12 19:39:38 eric Exp $
     1.7 +# $Id: Makefile,v 1.28 2003/03/12 23:57:21 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 @@ -55,7 +55,7 @@
    1.12  # let me know why so I can improve this Makefile.
    1.13  # -----------------------------------------------------------------------------
    1.14  
    1.15 -VERSION = 0.22
    1.16 +VERSION = 0.23
    1.17  
    1.18  PACKAGE = t2p
    1.19  
    1.20 @@ -64,7 +64,7 @@
    1.21  CSRCS = t2p.c semantics.c \
    1.22  	bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \
    1.23  	pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c \
    1.24 -	pdf_g4.c pdf_jpeg.c
    1.25 +	pdf_text.c pdf_g4.c pdf_jpeg.c
    1.26  OSRCS = scanner.l parser.y
    1.27  HDRS = t2p.h semantics.h bitblt.h bitblt_tables.h \
    1.28  	pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h
    1.29 @@ -88,7 +88,7 @@
    1.30  t2p: t2p.o scanner.o semantics.o parser.tab.o \
    1.31  		bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \
    1.32  		pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \
    1.33 -		pdf_g4.o pdf_jpeg.o
    1.34 +		pdf_text.o pdf_g4.o pdf_jpeg.o
    1.35  	$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
    1.36  ifndef DEBUG
    1.37  	strip $@