1.1 diff -r 9eb47d44dab9 -r 72eb20f1a4ec Makefile 1.2 --- a/Makefile Fri Dec 28 04:44:05 2001 +0000 1.3 +++ b/Makefile Fri Dec 28 04:44:15 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 # Makefile 1.7 -# $Id: Makefile,v 1.2 2001/08/12 03:03:16 eric Exp $ 1.8 +# $Id: Makefile,v 1.3 2001/12/27 20:44:15 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,6 +19,22 @@ 1.13 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA 1.14 1.15 1.16 -LDLIBS = -ltiff -lm 1.17 +CFLAGS = -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 + 1.24 +bitblt.o: bitblt.c 1.25 1.26 -tiffg4: tiffg4.o 1.27 +tiff2pdf: tiff2pdf.o scanner.o parser.tab.o 1.28 + 1.29 +pandamain: pandamain.o 1.30 + 1.31 + 1.32 +%.tab.c %.tab.h: %.y 1.33 + $(YACC) $(YFLAGS) $< 1.34 + 1.35 +# %.c: %.l 1.36 +# $(LEX) $(LFLAGS) $< 1.37 \ No newline at end of file