home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / xloadimg.zip / xloadimage.4.1 / tiff / Makefile.gcc < prev    next >
Makefile  |  1996-03-18  |  5KB  |  192 lines

  1. #    $Header: /usr/people/sam/tiff/libtiff/RCS/Makefile.sun,v 1.36 92/02/19 14:25:29 sam Exp $
  2. #
  3. # Tag Image File Format Library
  4. #
  5. # Copyright (c) 1988, 1989, 1990, 1991, 1992 Sam Leffler
  6. # Copyright (c) 1991, 1992 Silicon Graphics, Inc.
  7. # Permission to use, copy, modify, distribute, and sell this software and 
  8. # its documentation for any purpose is hereby granted without fee, provided
  9. # that (i) the above copyright notices and this permission notice appear in
  10. # all copies of the software and related documentation, and (ii) the names of
  11. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  12. # publicity relating to the software without the specific, prior written
  13. # permission of Stanford and Silicon Graphics.
  14. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  18. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  21. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  22. # OF THIS SOFTWARE.
  23. #
  24.  
  25. # The name of your C compiler:
  26. CC= gcc 
  27.  
  28. # You may need to adjust these cc options:
  29. CFLAGS= -c -m486 -O2 -fno-strength-reduce -Zmtd -Zsysv-signals -DUSE_PROTOTYPES -Dunix -Di386 -DIEEEFP -DHAVE_IEEEFP
  30.  
  31. # In particular:
  32. #   Add -DBSD if on a pure BSD system (see jinclude.h).
  33. #   Add -DMEM_STATS to enable gathering of memory usage statistics.
  34. #   You may also want to add -DTWO_FILE_COMMANDLINE or -D switches for other
  35. #   symbols listed in jconfig.h, if you prefer not to change jconfig.h.
  36.  
  37. # Link-time cc options:
  38. LDFLAGS= 
  39.  
  40. # miscellaneous OS-dependent stuff
  41. # linker
  42. LN= $(CC) 
  43. # file deletion command
  44. RM= rm -f
  45. # library (.a) file creation command
  46. AR= ar rc
  47. # second step in .a creation (use "touch" if not needed)
  48. AR2= ranlib
  49.  
  50.  
  51. DESTDIR=.
  52. #
  53. NULL=
  54.  
  55. IPATH=    -I.
  56. #
  57. # Library-wide configuration defines:
  58. #    MMAP_SUPPORT    add support for memory mapping read-only files
  59. #    COLORIMETRY_SUPPORT add support for 6.0 colorimetry tags
  60. #    JPEG_SUPPORT    add support for 6.0 JPEG tags & JPEG algorithms
  61. #    YCBCR_SUPPORT    add support for 6.0 YCbCr tags
  62. #    CMYK_SUPPORT    add support for 6.0 CMYK tags
  63. #
  64. # Compression configuration defines:
  65. #    CCITT_SUPPORT    add support for CCITT Group 3 & 4 algorithms
  66. #    PACKBITS_SUPPORT    add support for Macintosh PackBits algorithm
  67. #    LZW_SUPPORT    add support for LZW algorithm
  68. #    THUNDER_SUPPORT    add support for ThunderScan 4-bit RLE algorithm
  69. #    NEXT_SUPPORT    add support for NeXT 2-bit RLE algorithm
  70. #    JPEG_SUPPORT    add support for JPEG DCT algorithm
  71. #
  72. # Note that if you change the library-wide configuration, you'll
  73. # need to manual force a full rebuild.  Changing the configuration
  74. # of which compression algorithms are included in the library is
  75. # automatically handled (i.e. tif_compress.o has a dependency on
  76. # the Makefile).
  77. #
  78. CONF_COMPRESSION=\
  79.     -DPACKBITS_SUPPORT \
  80.     -DLZW_SUPPORT \
  81.     -DCCITT_SUPPORT \
  82.     -DTHUNDER_SUPPORT  \
  83.     -DNEXT_SUPPORT  \
  84.     ${NULL}
  85. CONF_LIBRARY=\
  86.     -DHAVE_IEEEFP=1 \
  87.     -DCOLORIMETRY_SUPPORT \
  88.     -DYCBCR_SUPPORT \
  89.     ${NULL}
  90.  
  91. #
  92. INCS=    tiff.h tiffio.h
  93. SRCS=    tif_fax3.c \
  94.     tif_fax4.c \
  95.     tif_aux.c \
  96.     tif_ccittrle.c \
  97.     tif_close.c \
  98.     tif_compat.c \
  99.     tif_compress.c \
  100.     tif_dir.c \
  101.     tif_dirinfo.c \
  102.     tif_dirread.c \
  103.     tif_dirwrite.c \
  104.     tif_dumpmode.c \
  105.     tif_error.c \
  106.     tif_getimage.c \
  107.     tif_jpeg.c \
  108.     tif_flush.c \
  109.     tif_lzw.c \
  110.     tif_next.c \
  111.     tif_open.c \
  112.     tif_packbits.c \
  113.     tif_print.c \
  114.     tif_read.c \
  115.     tif_swab.c \
  116.     tif_strip.c \
  117.     tif_thunder.c \
  118.     tif_tile.c \
  119.     tif_version.c \
  120.     tif_warning.c \
  121.     tif_write.c \
  122.     ${NULL}
  123. OBJS=    tif_fax3.o \
  124.     tif_fax4.o \
  125.     tif_aux.o \
  126.     tif_ccittrle.o \
  127.     tif_close.o \
  128.     tif_compat.o \
  129.     tif_compress.o \
  130.     tif_dir.o \
  131.     tif_dirinfo.o \
  132.     tif_dirread.o \
  133.     tif_dirwrite.o \
  134.     tif_dumpmode.o \
  135.     tif_error.o \
  136.     tif_getimage.o \
  137.     tif_jpeg.o \
  138.     tif_flush.o \
  139.     tif_lzw.o \
  140.     tif_next.o \
  141.     tif_open.o \
  142.     tif_packbits.o \
  143.     tif_print.o \
  144.     tif_read.o \
  145.     tif_strip.o \
  146.     tif_swab.o \
  147.     tif_thunder.o \
  148.     tif_tile.o \
  149.     tif_version.o \
  150.     tif_warning.o \
  151.     tif_write.o \
  152.     ${NULL}
  153.  
  154. all:     ${ALL}
  155.  
  156. libtiff.a: ${OBJS}
  157.     $(RM) libtiff.a
  158.     $(AR) libtiff.a $?
  159. #    $(RANLIB) libtiff.a
  160.  
  161. ${OBJS}: tiffio.h tiff.h tiffcompat.h tiffioP.h
  162. tif_compress.o: tif_compress.c Makefile
  163.     ${CC} -c ${CFLAGS} ${CONF_COMPRESSION} tif_compress.c
  164. tif_fax3.o: tif_fax3.c g3states.h t4.h tif_fax3.h
  165.  
  166. g3states.h: mkg3states.c t4.h
  167.     ${CC} ${CFLAGS} -o mkg3states.o  mkg3states.c
  168.     ${CC} ${LDFLAGS} -o mkg3states.exe  mkg3states.o
  169.     mkg3states.exe > g3states.h
  170.  
  171. install: all installh
  172.     -for i in ${ALL}; do \
  173.         ${INSTALL} -c -m 644 $$i ${DESTDIR}/lib/$$i; \
  174.         ${RANLIB} ${DESTDIR}/lib/$$i; \
  175.     done
  176.  
  177. installh: ${INCS}
  178.     -for i in ${INCS}; do \
  179.         h=`basename $$i`; \
  180.         cmp -s $$i ${DESTDIR}/include/$$h || \
  181.             ${INSTALL} -c -m 444 $$i ${DESTDIR}/include/$$h; \
  182.     done
  183.  
  184. clean:
  185.     rm -f ${OBJS} libtiff.a core a.out mkg3states g3states.h *~
  186.  
  187. tags:    ${SRCS}
  188.     ${CTAGS} ${SRCS}
  189.