my own PDF routines to replace Panda.

Thu, 20 Feb 2003 12:21:10 +0000

author
eric
date
Thu, 20 Feb 2003 12:21:10 +0000
changeset 61
0dbb3612d812
parent 60
ffb5b1e54eb2
child 62
9bd354b83e16

my own PDF routines to replace Panda.

Makefile file | annotate | diff | revisions
     1.1 --- a/Makefile	Thu Feb 20 12:20:28 2003 +0000
     1.2 +++ b/Makefile	Thu Feb 20 12:21:10 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.12 2003/02/19 02:14:49 eric Exp $
     1.7 +# $Id: Makefile,v 1.13 2003/02/20 04:21:10 eric Exp $
     1.8  # Copyright 2001 Eric Smith <eric@brouhaha.com>
     1.9  #
    1.10  # This program is free software; you can redistribute it and/or modify
    1.11 @@ -42,7 +42,8 @@
    1.12  
    1.13  TARGETS = t2p bitblt_test
    1.14  
    1.15 -CSRCS = t2p.c semantics.c bitblt.c bitblt_test.c bitblt_table_gen.c
    1.16 +CSRCS = t2p.c semantics.c bitblt.c bitblt_test.c bitblt_table_gen.c \
    1.17 +	pdf.c pdf_util.c pdf_prim.c pdf_g4.c
    1.18  OSRCS = scanner.l parser.y
    1.19  HDRS = t2p.h semantics.h bitblt.h
    1.20  MISC = COPYING Makefile
    1.21 @@ -59,7 +60,8 @@
    1.22  all: $(TARGETS)
    1.23  
    1.24  
    1.25 -t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o
    1.26 +t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o \
    1.27 +	pdf_util.o pdf_prim.o pdf_g4.o
    1.28  
    1.29  bitblt_tables.h: bitblt_table_gen
    1.30  	./bitblt_table_gen >bitblt_tables.h