1.1 --- a/Makefile Sat Dec 29 17:44:57 2001 +0000 1.2 +++ b/Makefile Sat Dec 29 17:45:43 2001 +0000 1.3 @@ -1,6 +1,6 @@ 1.4 -# tiffg4: reencode a bilevel TIFF file as a single-strip TIFF Class F Group 4 1.5 +# tiff2pdf: build a PDF file out of one or more TIFF Class F Group 4 files 1.6 # Makefile 1.7 -# $Id: Makefile,v 1.3 2001/12/27 20:44:15 eric Exp $ 1.8 +# $Id: Makefile,v 1.4 2001/12/29 09:44:27 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,16 +19,14 @@ 1.13 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA 1.14 1.15 1.16 -CFLAGS = -g -I/usr/local/include/panda 1.17 +CFLAGS = -Wall -g -I/usr/local/include/panda 1.18 LDLIBS = -g -ltiff -lm -L/usr/local/lib/panda -lpanda -lpng 1.19 YACC = bison 1.20 YFLAGS = -d -v 1.21 1.22 -bitblt_test: bitblt_test.o bitblt.o 1.23 +tiff2pdf: tiff2pdf.o scanner.o parser.tab.o 1.24 1.25 -bitblt.o: bitblt.c 1.26 - 1.27 -tiff2pdf: tiff2pdf.o scanner.o parser.tab.o 1.28 +bitblt_test: bitblt_test.o bitblt.o 1.29 1.30 pandamain: pandamain.o 1.31 1.32 @@ -37,4 +35,5 @@ 1.33 $(YACC) $(YFLAGS) $< 1.34 1.35 # %.c: %.l 1.36 -# $(LEX) $(LFLAGS) $< 1.37 \ No newline at end of file 1.38 +# $(LEX) $(LFLAGS) $< 1.39 +