Fri, 28 Dec 2001 04:44:15 +0000
added bitblt stuff, parser, and scanner.
eric@1 | 1 | # tiffg4: reencode a bilevel TIFF file as a single-strip TIFF Class F Group 4 |
eric@1 | 2 | # Makefile |
eric@6 | 3 | # $Id: Makefile,v 1.3 2001/12/27 20:44:15 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@6 | 22 | CFLAGS = -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@6 | 27 | bitblt_test: bitblt_test.o bitblt.o |
eric@6 | 28 | |
eric@6 | 29 | bitblt.o: bitblt.c |
eric@0 | 30 | |
eric@6 | 31 | tiff2pdf: tiff2pdf.o scanner.o parser.tab.o |
eric@6 | 32 | |
eric@6 | 33 | pandamain: pandamain.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@6 | 40 | # $(LEX) $(LFLAGS) $< |