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