Makefile

changeset 11
30d18cf8bb67
parent 6
72eb20f1a4ec
child 12
c3e2c2344560
     1.1 diff -r 3184d26a9596 -r 30d18cf8bb67 Makefile
     1.2 --- a/Makefile	Sat Dec 29 17:44:57 2001 +0000
     1.3 +++ b/Makefile	Sat Dec 29 17:45:43 2001 +0000
     1.4 @@ -1,6 +1,6 @@
     1.5 -# tiffg4: reencode a bilevel TIFF file as a single-strip TIFF Class F Group 4
     1.6 +# tiff2pdf: build a PDF file out of one or more TIFF Class F Group 4 files
     1.7  # Makefile
     1.8 -# $Id: Makefile,v 1.3 2001/12/27 20:44:15 eric Exp $
     1.9 +# $Id: Makefile,v 1.4 2001/12/29 09:44:27 eric Exp $
    1.10  # Copyright 2001 Eric Smith <eric@brouhaha.com>
    1.11  #
    1.12  # This program is free software; you can redistribute it and/or modify
    1.13 @@ -19,16 +19,14 @@
    1.14  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111  USA
    1.15  
    1.16  
    1.17 -CFLAGS = -g -I/usr/local/include/panda
    1.18 +CFLAGS = -Wall -g -I/usr/local/include/panda
    1.19  LDLIBS = -g -ltiff -lm -L/usr/local/lib/panda -lpanda -lpng
    1.20  YACC = bison
    1.21  YFLAGS = -d -v
    1.22  
    1.23 -bitblt_test: bitblt_test.o bitblt.o
    1.24 +tiff2pdf: tiff2pdf.o scanner.o parser.tab.o
    1.25  
    1.26 -bitblt.o: bitblt.c
    1.27 -
    1.28 -tiff2pdf: tiff2pdf.o scanner.o parser.tab.o
    1.29 +bitblt_test: bitblt_test.o bitblt.o
    1.30  
    1.31  pandamain: pandamain.o
    1.32  
    1.33 @@ -37,4 +35,5 @@
    1.34  	$(YACC) $(YFLAGS) $<
    1.35  
    1.36  # %.c: %.l
    1.37 -# 	$(LEX) $(LFLAGS) $<
    1.38 \ No newline at end of file
    1.39 +# 	$(LEX) $(LFLAGS) $<
    1.40 +