Sat, 29 Dec 2001 18:59:47 +0000
*** empty log message ***
eric@11 | 1 | # tiff2pdf: build a PDF file out of one or more TIFF Class F Group 4 files |
eric@1 | 2 | # Makefile |
eric@12 | 3 | # $Id: Makefile,v 1.5 2001/12/29 10:59:17 eric Exp $ |
eric@1 | 4 | # Copyright 2001 Eric Smith <eric@brouhaha.com> |
eric@1 | 5 | # |
eric@1 | 6 | # This program is free software; you can redistribute it and/or modify |
eric@1 | 7 | # it under the terms of the GNU General Public License version 2 as |
eric@1 | 8 | # published by the Free Software Foundation. Note that permission is |
eric@1 | 9 | # not granted to redistribute this program under the terms of any |
eric@1 | 10 | # other version of the General Public License. |
eric@1 | 11 | # |
eric@1 | 12 | # This program is distributed in the hope that it will be useful, |
eric@1 | 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
eric@1 | 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
eric@1 | 15 | # GNU General Public License for more details. |
eric@1 | 16 | # |
eric@1 | 17 | # You should have received a copy of the GNU General Public License |
eric@1 | 18 | # along with this program; if not, write to the Free Software |
eric@1 | 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA |
eric@1 | 20 | |
eric@1 | 21 | |
eric@11 | 22 | CFLAGS = -Wall -g -I/usr/local/include/panda |
eric@6 | 23 | LDLIBS = -g -ltiff -lm -L/usr/local/lib/panda -lpanda -lpng |
eric@6 | 24 | YACC = bison |
eric@6 | 25 | YFLAGS = -d -v |
eric@6 | 26 | |
eric@12 | 27 | SRCS = bitblt.c bitblt_test.c tiff2pdf.c |
eric@12 | 28 | HDRS = type.h bitblt.h tiff2pdf.h |
eric@12 | 29 | MISC = Makefile scanner.l parser.y |
eric@12 | 30 | |
eric@11 | 31 | tiff2pdf: tiff2pdf.o scanner.o parser.tab.o |
eric@6 | 32 | |
eric@11 | 33 | bitblt_test: bitblt_test.o bitblt.o |
eric@6 | 34 | |
eric@6 | 35 | |
eric@6 | 36 | %.tab.c %.tab.h: %.y |
eric@6 | 37 | $(YACC) $(YFLAGS) $< |
eric@6 | 38 | |
eric@6 | 39 | # %.c: %.l |
eric@11 | 40 | # $(LEX) $(LFLAGS) $< |
eric@11 | 41 |