Makefile

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