Makefile

changeset 62
9bd354b83e16
parent 61
0dbb3612d812
child 70
16e2cf55dbd9
     1.1 diff -r 0dbb3612d812 -r 9bd354b83e16 Makefile
     1.2 --- a/Makefile	Thu Feb 20 12:21:10 2003 +0000
     1.3 +++ b/Makefile	Thu Feb 20 12:44:17 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.13 2003/02/20 04:21:10 eric Exp $
     1.8 +# $Id: Makefile,v 1.14 2003/02/20 04:44:17 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 @@ -19,13 +19,13 @@
    1.13  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111  USA
    1.14  
    1.15  
    1.16 -CFLAGS = -Wall -g -I/usr/local/include/panda
    1.17 +CFLAGS = -Wall -g
    1.18  
    1.19  # Panda is not all that common, so we'll statically link it in order to
    1.20  # make the t2p binary more portable.
    1.21  
    1.22  LDFLAGS = -g
    1.23 -LDLIBS = -Wl,-static -lpanda -Wl,-dy -lpng -ltiff -ljpeg -lz -lm -L/usr/local/lib/panda 
    1.24 +LDLIBS = -ltiff -lm
    1.25  
    1.26  YACC = bison
    1.27  YFLAGS = -d -v
    1.28 @@ -61,7 +61,7 @@
    1.29  
    1.30  
    1.31  t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o \
    1.32 -	pdf_util.o pdf_prim.o pdf_g4.o
    1.33 +	pdf.o pdf_util.o pdf_prim.o pdf_g4.o
    1.34  
    1.35  bitblt_tables.h: bitblt_table_gen
    1.36  	./bitblt_table_gen >bitblt_tables.h