1#	$Header: /usr/people/sam/tiff/libtiff/RCS/Makefile.mpw,v 1.5 1994/07/26 16:47:18 sam Exp $
2#
3# Tag Image File Format Library
4#
5# Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994 Sam Leffler
6# Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
7#
8# Permission to use, copy, modify, distribute, and sell this software and
9# its documentation for any purpose is hereby granted without fee, provided
10# that (i) the above copyright notices and this permission notice appear in
11# all copies of the software and related documentation, and (ii) the names of
12# Sam Leffler and Silicon Graphics may not be used in any advertising or
13# publicity relating to the software without the specific, prior written
14# permission of Sam Leffler and Silicon Graphics.
15#
16# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
17# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
18# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
19#
20# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
21# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
22# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
23# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
24# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
25# OF THIS SOFTWARE.
26#
27
28#
29# Makefile for Mac using MPW 3.2.3 and MPW C 3.2.4
30#
31# Note that the LZW and CCIT code are not included because there are
32# structures larger than 32K (which cause the compiler to choke).
33#
34.c.o � .c
35	{C} {COptions} {CFLAGS} -s {Default} {DepDir}{Default}.c -o {TargDir}{Default}.c.o
36
37CONF_LIBRARY= �
38	-d HAVE_IEEEFP=139	-d BSDTYPES
40
41CONF_COMPRESSION= �
42	-d COMPRESSION_SUPPORT43	-d PACKBITS_SUPPORT44	-d THUNDER_SUPPORT45	-d NEXT_SUPPORT
46
47CFLAGS=	{COPTS} {IPATH} {CONF_LIBRARY} {CONF_COMPRESSION}
48
49INCS=	tiff.h tiffio.h
50
51SRCS=	�
52	tif_aux.c53	tif_ccittrle.c54	tif_close.c55	tif_compress.c56	tif_dir.c57	tif_dirinfo.c58	tif_dirread.c59	tif_dirwrite.c60	tif_dumpmode.c61	tif_error.c62	tif_getimage.c63	tif_jpeg.c64	tif_flush.c65	tif_next.c66	tif_open.c67	tif_packbits.c68	tif_print.c69	tif_read.c70	tif_swab.c71	tif_strip.c72	tif_thunder.c73	tif_tile.c74	tif_apple.c75	tif_version.c76	tif_warning.c77	tif_write.c
78
79OBJS=	�
80	tif_aux.c.o81	tif_ccittrle.c.o82	tif_close.c.o83	tif_compress.c.o84	tif_dir.c.o85	tif_dirinfo.c.o86	tif_dirread.c.o87	tif_dirwrite.c.o88	tif_dumpmode.c.o89	tif_error.c.o90	tif_getimage.c.o91	tif_jpeg.c.o92	tif_flush.c.o93	tif_next.c.o94	tif_open.c.o95	tif_packbits.c.o96	tif_print.c.o97	tif_read.c.o98	tif_strip.c.o99	tif_swab.c.o100	tif_thunder.c.o101	tif_tile.c.o102	tif_apple.c.o103	tif_version.c.o104	tif_warning.c.o105	tif_write.c.o
106
107alllibtiff.o
108
109libtiff.o � {OBJS}
110	Lib  {OBJS} -o libtiff.o
111
112
113{OBJS} � tiffio.h tiff.h tiffcomp.h tiffiop.h tiffconf.h
114
115clean116	delete -i {ALL} {OBJS} core a.out mkg3states g3states.h
117