Makefile

changeset 61
0dbb3612d812
parent 53
bb180150e603
child 62
9bd354b83e16
     1.1 diff -r ffb5b1e54eb2 -r 0dbb3612d812 Makefile
     1.2 --- a/Makefile	Thu Feb 20 12:20:28 2003 +0000
     1.3 +++ b/Makefile	Thu Feb 20 12:21:10 2003 +0000
     1.4 @@ -1,6 +1,6 @@
     1.5  # t2p: build a PDF file out of one or more TIFF Class F Group 4 files
     1.6  # Makefile
     1.7 -# $Id: Makefile,v 1.12 2003/02/19 02:14:49 eric Exp $
     1.8 +# $Id: Makefile,v 1.13 2003/02/20 04:21:10 eric Exp $
     1.9  # Copyright 2001 Eric Smith <eric@brouhaha.com>
    1.10  #
    1.11  # This program is free software; you can redistribute it and/or modify
    1.12 @@ -42,7 +42,8 @@
    1.13  
    1.14  TARGETS = t2p bitblt_test
    1.15  
    1.16 -CSRCS = t2p.c semantics.c bitblt.c bitblt_test.c bitblt_table_gen.c
    1.17 +CSRCS = t2p.c semantics.c bitblt.c bitblt_test.c bitblt_table_gen.c \
    1.18 +	pdf.c pdf_util.c pdf_prim.c pdf_g4.c
    1.19  OSRCS = scanner.l parser.y
    1.20  HDRS = t2p.h semantics.h bitblt.h
    1.21  MISC = COPYING Makefile
    1.22 @@ -59,7 +60,8 @@
    1.23  all: $(TARGETS)
    1.24  
    1.25  
    1.26 -t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o
    1.27 +t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o \
    1.28 +	pdf_util.o pdf_prim.o pdf_g4.o
    1.29  
    1.30  bitblt_tables.h: bitblt_table_gen
    1.31  	./bitblt_table_gen >bitblt_tables.h