1.1 diff -r 30d18cf8bb67 -r c3e2c2344560 Makefile 1.2 --- a/Makefile Sat Dec 29 17:45:43 2001 +0000 1.3 +++ b/Makefile Sat Dec 29 18:59:47 2001 +0000 1.4 @@ -1,6 +1,6 @@ 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.4 2001/12/29 09:44:27 eric Exp $ 1.8 +# $Id: Makefile,v 1.5 2001/12/29 10:59:17 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 @@ -24,12 +24,14 @@ 1.13 YACC = bison 1.14 YFLAGS = -d -v 1.15 1.16 +SRCS = bitblt.c bitblt_test.c tiff2pdf.c 1.17 +HDRS = type.h bitblt.h tiff2pdf.h 1.18 +MISC = Makefile scanner.l parser.y 1.19 + 1.20 tiff2pdf: tiff2pdf.o scanner.o parser.tab.o 1.21 1.22 bitblt_test: bitblt_test.o bitblt.o 1.23 1.24 -pandamain: pandamain.o 1.25 - 1.26 1.27 %.tab.c %.tab.h: %.y 1.28 $(YACC) $(YFLAGS) $<