Makefile

changeset 106
311726c12122
parent 99
26f7edf15ef4
child 112
ddf1ad38ddbf
     1.1 --- a/Makefile	Wed Mar 12 09:52:09 2003 +0000
     1.2 +++ b/Makefile	Wed Mar 12 10:57:06 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.23 2003/03/11 22:57:46 eric Exp $
     1.7 +# $Id: Makefile,v 1.24 2003/03/12 02:57:06 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 @@ -63,7 +63,8 @@
    1.12  
    1.13  CSRCS = t2p.c semantics.c \
    1.14  	bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \
    1.15 -	pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c pdf_g4.c
    1.16 +	pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c \
    1.17 +	pdf_g4.c pdf_jpeg.c
    1.18  OSRCS = scanner.l parser.y
    1.19  HDRS = t2p.h semantics.h bitblt.h bitblt_tables.h \
    1.20  	pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h
    1.21 @@ -87,7 +88,7 @@
    1.22  t2p: t2p.o scanner.o semantics.o parser.tab.o \
    1.23  		bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \
    1.24  		pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \
    1.25 -		pdf_g4.o
    1.26 +		pdf_g4.o pdf_jpeg.o
    1.27  	$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
    1.28  ifndef DEBUG
    1.29  	strip $@