1.1 --- a/Makefile Tue Jan 22 09:42:42 2002 +0000 1.2 +++ b/Makefile Wed Jan 30 08:55:53 2002 +0000 1.3 @@ -1,6 +1,6 @@ 1.4 -# tiff2pdf: build a PDF file out of one or more TIFF Class F Group 4 files 1.5 +# t2p: build a PDF file out of one or more TIFF Class F Group 4 files 1.6 # Makefile 1.7 -# $Id: Makefile,v 1.8 2002/01/22 01:41:12 eric Exp $ 1.8 +# $Id: Makefile,v 1.9 2002/01/30 00:55:53 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,23 +24,27 @@ 1.13 YACC = bison 1.14 YFLAGS = -d -v 1.15 1.16 -SRCS = bitblt.c bitblt_test.c tiff2pdf.c semantics.c 1.17 -HDRS = type.h bitblt.h tiff2pdf.h semantics.h 1.18 +SRCS = bitblt.c bitblt_test.c t2p.c semantics.c 1.19 +HDRS = type.h bitblt.h t2p.h semantics.h 1.20 MISC = Makefile scanner.l parser.y 1.21 1.22 -TARGETS = tiff2pdf bitblt_test 1.23 +TARGETS = t2p bitblt_test 1.24 1.25 AUTO_SRCS = scanner.c parser.tab.c 1.26 AUTO_HDRS = parser.tab.h 1.27 AUTO_MISC = parser.output 1.28 1.29 -tiff2pdf: tiff2pdf.o scanner.o semantics.o parser.tab.o bitblt.o 1.30 +t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o 1.31 1.32 bitblt_test: bitblt_test.o bitblt.o 1.33 1.34 1.35 clean: 1.36 - rm -f *.o *.d $(TARGETS) $(AUTO_SRCS) $(AUTO_HDRS) $(AUTO_MISC) 1.37 + rm -f *.o *.d $(TARGETS) $(AUTO_SRCS) $(AUTO_HDRS) $(AUTO_MISC) 1.38 + 1.39 +very_clean: 1.40 + rm -f *.o *.d $(TARGETS) $(AUTO_SRCS) $(AUTO_HDRS) $(AUTO_MISC) \ 1.41 + *~ *.pdf 1.42 1.43 wc: 1.44 wc -l $(SRCS) $(HDRS) $(MISC)