Fri, 28 Dec 2001 04:44:15 +0000
added bitblt stuff, parser, and scanner.
Makefile | file | annotate | diff | revisions |
1.1 --- a/Makefile Fri Dec 28 04:44:05 2001 +0000 1.2 +++ b/Makefile Fri Dec 28 04:44:15 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 # Makefile 1.6 -# $Id: Makefile,v 1.2 2001/08/12 03:03:16 eric Exp $ 1.7 +# $Id: Makefile,v 1.3 2001/12/27 20:44:15 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,6 +19,22 @@ 1.12 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA 1.13 1.14 1.15 -LDLIBS = -ltiff -lm 1.16 +CFLAGS = -g -I/usr/local/include/panda 1.17 +LDLIBS = -g -ltiff -lm -L/usr/local/lib/panda -lpanda -lpng 1.18 +YACC = bison 1.19 +YFLAGS = -d -v 1.20 + 1.21 +bitblt_test: bitblt_test.o bitblt.o 1.22 + 1.23 +bitblt.o: bitblt.c 1.24 1.25 -tiffg4: tiffg4.o 1.26 +tiff2pdf: tiff2pdf.o scanner.o parser.tab.o 1.27 + 1.28 +pandamain: pandamain.o 1.29 + 1.30 + 1.31 +%.tab.c %.tab.h: %.y 1.32 + $(YACC) $(YFLAGS) $< 1.33 + 1.34 +# %.c: %.l 1.35 +# $(LEX) $(LFLAGS) $< 1.36 \ No newline at end of file