| 1 |
# Generated automatically from makefile.cfg by configure.
|
1 |
# Generated automatically from makefile.cfg by configure.
|
| 2 |
# Makefile for Independent JPEG Group's software
|
2 |
# Makefile for Independent JPEG Group's software
|
| 3 |
|
3 |
|
| 4 |
# makefile.cfg is edited by configure to produce a custom Makefile.
|
4 |
# makefile.cfg is edited by configure to produce a custom Makefile.
|
| 5 |
|
5 |
|
| 6 |
# Read installation instructions before saying "make" !!
|
6 |
# Read installation instructions before saying "make" !!
|
| 7 |
|
7 |
|
| 8 |
# For compiling with source and object files in different directories.
|
8 |
# For compiling with source and object files in different directories.
|
| 9 |
srcdir = ./.
|
9 |
srcdir = ./.
|
| 10 |
VPATH = ./.
|
10 |
VPATH = ./.
|
| 11 |
|
11 |
|
| 12 |
# Where to install the programs and man pages.
|
12 |
# Where to install the programs and man pages.
|
| 13 |
prefix = /usr/local
|
13 |
prefix = /usr/local
|
| 14 |
exec_prefix = ${prefix}
|
14 |
exec_prefix = ${prefix}
|
| 15 |
bindir = $(exec_prefix)/bin
|
15 |
bindir = $(exec_prefix)/bin
|
| 16 |
libdir = $(exec_prefix)/lib
|
16 |
libdir = $(exec_prefix)/lib
|
| 17 |
includedir = $(prefix)/include
|
17 |
includedir = $(prefix)/include
|
| 18 |
binprefix =
|
18 |
binprefix =
|
| 19 |
manprefix =
|
19 |
manprefix =
|
| 20 |
manext = 1
|
20 |
manext = 1
|
| 21 |
mandir = $(prefix)/man/man$(manext)
|
21 |
mandir = $(prefix)/man/man$(manext)
|
| 22 |
|
22 |
|
| 23 |
# The name of your C compiler:
|
23 |
# The name of your C compiler:
|
| 24 |
CC= gcc -mno-cygwin
|
24 |
CC= gcc -mno-cygwin
|
| 25 |
|
25 |
|
| 26 |
# You may need to adjust these cc options:
|
26 |
# You may need to adjust these cc options:
|
| 27 |
CFLAGS= -O2 -I. -I$(srcdir)
|
27 |
CFLAGS= -O2 -I. -I$(srcdir)
|
| 28 |
# Generally, we recommend defining any configuration symbols in jconfig.h,
|
28 |
# Generally, we recommend defining any configuration symbols in jconfig.h,
|
| 29 |
# NOT via -D switches here.
|
29 |
# NOT via -D switches here.
|
| 30 |
# However, any special defines for ansi2knr.c may be included here:
|
30 |
# However, any special defines for ansi2knr.c may be included here:
|
| 31 |
ANSI2KNRFLAGS=
|
31 |
ANSI2KNRFLAGS=
|
| 32 |
|
32 |
|
| 33 |
# Link-time cc options:
|
33 |
# Link-time cc options:
|
| 34 |
LDFLAGS=
|
34 |
LDFLAGS=
|
| 35 |
|
35 |
|
| 36 |
# To link any special libraries, add the necessary -l commands here.
|
36 |
# To link any special libraries, add the necessary -l commands here.
|
| 37 |
LDLIBS=
|
37 |
LDLIBS=
|
| 38 |
|
38 |
|
| 39 |
# If using GNU libtool, LIBTOOL references it; if not, LIBTOOL is empty.
|
39 |
# If using GNU libtool, LIBTOOL references it; if not, LIBTOOL is empty.
|
| 40 |
LIBTOOL =
|
40 |
LIBTOOL =
|
| 41 |
# $(O) expands to "lo" if using libtool, plain "o" if not.
|
41 |
# $(O) expands to "lo" if using libtool, plain "o" if not.
|
| 42 |
# Similarly, $(A) expands to "la" or "a".
|
42 |
# Similarly, $(A) expands to "la" or "a".
|
| 43 |
O = o
|
43 |
O = o
|
| 44 |
A = a
|
44 |
A = a
|
| 45 |
|
45 |
|
| 46 |
# Library version ID; libtool uses this for the shared library version number.
|
46 |
# Library version ID; libtool uses this for the shared library version number.
|
| 47 |
# Note: we suggest this match the macro of the same name in jpeglib.h.
|
47 |
# Note: we suggest this match the macro of the same name in jpeglib.h.
|
| 48 |
JPEG_LIB_VERSION = 62
|
48 |
JPEG_LIB_VERSION = 62
|
| 49 |
|
49 |
|
| 50 |
# Put here the object file name for the correct system-dependent memory
|
50 |
# Put here the object file name for the correct system-dependent memory
|
| 51 |
# manager file. For Unix this is usually jmemnobs.o, but you may want
|
51 |
# manager file. For Unix this is usually jmemnobs.o, but you may want
|
| 52 |
# to use jmemansi.o or jmemname.o if you have limited swap space.
|
52 |
# to use jmemansi.o or jmemname.o if you have limited swap space.
|
| 53 |
SYSDEPMEM= jmemnobs.$(O)
|
53 |
SYSDEPMEM= jmemnobs.$(O)
|
| 54 |
|
54 |
|
| 55 |
# miscellaneous OS-dependent stuff
|
55 |
# miscellaneous OS-dependent stuff
|
| 56 |
SHELL= /bin/sh
|
56 |
#SHELL= /bin/sh
|
| 57 |
# linker
|
57 |
# linker
|
| 58 |
LN= $(CC)
|
58 |
LN= $(CC)
|
| 59 |
# file deletion command
|
59 |
# file deletion command
|
| 60 |
RM= rm -f
|
60 |
RM= rm -f
|
| 61 |
# directory creation command
|
61 |
# directory creation command
|
| 62 |
MKDIR= mkdir
|
62 |
MKDIR= mkdir
|
| 63 |
# library (.a) file creation command
|
63 |
# library (.a) file creation command
|
| 64 |
AR= ar rc
|
64 |
AR= ar rc
|
| 65 |
# second step in .a creation (use "touch" if not needed)
|
65 |
# second step in .a creation (use "touch" if not needed)
|
| 66 |
AR2= ranlib
|
66 |
AR2= ranlib
|
| 67 |
# installation program
|
67 |
# installation program
|
| 68 |
INSTALL= /CYGNUS/CYGWIN~1/H-I586~1/BIN/install -c
|
68 |
INSTALL= /CYGNUS/CYGWIN~1/H-I586~1/BIN/install -c
|
| 69 |
INSTALL_PROGRAM= ${INSTALL}
|
69 |
INSTALL_PROGRAM= ${INSTALL}
|
| 70 |
INSTALL_LIB= ${INSTALL} -m 644
|
70 |
INSTALL_LIB= ${INSTALL} -m 644
|
| 71 |
INSTALL_DATA= ${INSTALL} -m 644
|
71 |
INSTALL_DATA= ${INSTALL} -m 644
|
| 72 |
|
72 |
|
| 73 |
# End of configurable options.
|
73 |
# End of configurable options.
|
| 74 |
|
74 |
|
| 75 |
|
75 |
|
| 76 |
# source files: JPEG library proper
|
76 |
# source files: JPEG library proper
|
| 77 |
LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \
|
77 |
LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \
|
| 78 |
jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
|
78 |
jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
|
| 79 |
jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \
|
79 |
jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \
|
| 80 |
jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \
|
80 |
jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \
|
| 81 |
jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c \
|
81 |
jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c \
|
| 82 |
jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \
|
82 |
jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \
|
| 83 |
jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \
|
83 |
jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \
|
| 84 |
jquant2.c jutils.c jmemmgr.c
|
84 |
jquant2.c jutils.c jmemmgr.c
|
| 85 |
# memmgr back ends: compile only one of these into a working library
|
85 |
# memmgr back ends: compile only one of these into a working library
|
| 86 |
SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
|
86 |
SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
|
| 87 |
# source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
|
87 |
# source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
|
| 88 |
APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
|
88 |
APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
|
| 89 |
rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
|
89 |
rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
|
| 90 |
rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
|
90 |
rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
|
| 91 |
SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
|
91 |
SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
|
| 92 |
# files included by source files
|
92 |
# files included by source files
|
| 93 |
INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
|
93 |
INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
|
| 94 |
jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
|
94 |
jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
|
| 95 |
# documentation, test, and support files
|
95 |
# documentation, test, and support files
|
| 96 |
DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
|
96 |
DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
|
| 97 |
wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \
|
97 |
wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \
|
| 98 |
coderules.doc filelist.doc change.log
|
98 |
coderules.doc filelist.doc change.log
|
| 99 |
MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \
|
99 |
MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \
|
| 100 |
makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \
|
100 |
makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \
|
| 101 |
makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \
|
101 |
makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \
|
| 102 |
maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \
|
102 |
maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \
|
| 103 |
makvms.opt
|
103 |
makvms.opt
|
| 104 |
CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
|
104 |
CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
|
| 105 |
jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
|
105 |
jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
|
| 106 |
jconfig.vms
|
106 |
jconfig.vms
|
| 107 |
CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
|
107 |
CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
|
| 108 |
OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
|
108 |
OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
|
| 109 |
TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
|
109 |
TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
|
| 110 |
testimgp.jpg
|
110 |
testimgp.jpg
|
| 111 |
DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
|
111 |
DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
|
| 112 |
$(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
|
112 |
$(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
|
| 113 |
# library object files common to compression and decompression
|
113 |
# library object files common to compression and decompression
|
| 114 |
COMOBJECTS= jcomapi.$(O) jutils.$(O) jerror.$(O) jmemmgr.$(O) $(SYSDEPMEM)
|
114 |
COMOBJECTS= jcomapi.$(O) jutils.$(O) jerror.$(O) jmemmgr.$(O) $(SYSDEPMEM)
|
| 115 |
# compression library object files
|
115 |
# compression library object files
|
| 116 |
CLIBOBJECTS= jcapimin.$(O) jcapistd.$(O) jctrans.$(O) jcparam.$(O) \
|
116 |
CLIBOBJECTS= jcapimin.$(O) jcapistd.$(O) jctrans.$(O) jcparam.$(O) \
|
| 117 |
jdatadst.$(O) jcinit.$(O) jcmaster.$(O) jcmarker.$(O) jcmainct.$(O) \
|
117 |
jdatadst.$(O) jcinit.$(O) jcmaster.$(O) jcmarker.$(O) jcmainct.$(O) \
|
| 118 |
jcprepct.$(O) jccoefct.$(O) jccolor.$(O) jcsample.$(O) jchuff.$(O) \
|
118 |
jcprepct.$(O) jccoefct.$(O) jccolor.$(O) jcsample.$(O) jchuff.$(O) \
|
| 119 |
jcphuff.$(O) jcdctmgr.$(O) jfdctfst.$(O) jfdctflt.$(O) \
|
119 |
jcphuff.$(O) jcdctmgr.$(O) jfdctfst.$(O) jfdctflt.$(O) \
|
| 120 |
jfdctint.$(O)
|
120 |
jfdctint.$(O)
|
| 121 |
# decompression library object files
|
121 |
# decompression library object files
|
| 122 |
DLIBOBJECTS= jdapimin.$(O) jdapistd.$(O) jdtrans.$(O) jdatasrc.$(O) \
|
122 |
DLIBOBJECTS= jdapimin.$(O) jdapistd.$(O) jdtrans.$(O) jdatasrc.$(O) \
|
| 123 |
jdmaster.$(O) jdinput.$(O) jdmarker.$(O) jdhuff.$(O) jdphuff.$(O) \
|
123 |
jdmaster.$(O) jdinput.$(O) jdmarker.$(O) jdhuff.$(O) jdphuff.$(O) \
|
| 124 |
jdmainct.$(O) jdcoefct.$(O) jdpostct.$(O) jddctmgr.$(O) \
|
124 |
jdmainct.$(O) jdcoefct.$(O) jdpostct.$(O) jddctmgr.$(O) \
|
| 125 |
jidctfst.$(O) jidctflt.$(O) jidctint.$(O) jidctred.$(O) \
|
125 |
jidctfst.$(O) jidctflt.$(O) jidctint.$(O) jidctred.$(O) \
|
| 126 |
jdsample.$(O) jdcolor.$(O) jquant1.$(O) jquant2.$(O) jdmerge.$(O)
|
126 |
jdsample.$(O) jdcolor.$(O) jquant1.$(O) jquant2.$(O) jdmerge.$(O)
|
| 127 |
# These objectfiles are included in libjpeg.a
|
127 |
# These objectfiles are included in libjpeg.a
|
| 128 |
LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
|
128 |
LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
|
| 129 |
# object files for sample applications (excluding library files)
|
129 |
# object files for sample applications (excluding library files)
|
| 130 |
COBJECTS= cjpeg.$(O) rdppm.$(O) rdgif.$(O) rdtarga.$(O) rdrle.$(O) \
|
130 |
COBJECTS= cjpeg.$(O) rdppm.$(O) rdgif.$(O) rdtarga.$(O) rdrle.$(O) \
|
| 131 |
rdbmp.$(O) rdswitch.$(O) cdjpeg.$(O)
|
131 |
rdbmp.$(O) rdswitch.$(O) cdjpeg.$(O)
|
| 132 |
DOBJECTS= djpeg.$(O) wrppm.$(O) wrgif.$(O) wrtarga.$(O) wrrle.$(O) \
|
132 |
DOBJECTS= djpeg.$(O) wrppm.$(O) wrgif.$(O) wrtarga.$(O) wrrle.$(O) \
|
| 133 |
wrbmp.$(O) rdcolmap.$(O) cdjpeg.$(O)
|
133 |
wrbmp.$(O) rdcolmap.$(O) cdjpeg.$(O)
|
| 134 |
TROBJECTS= jpegtran.$(O) rdswitch.$(O) cdjpeg.$(O) transupp.$(O)
|
134 |
TROBJECTS= jpegtran.$(O) rdswitch.$(O) cdjpeg.$(O) transupp.$(O)
|
| 135 |
|
135 |
|
| 136 |
|
136 |
|
| 137 |
all: libjpeg.$(A) cjpeg djpeg jpegtran rdjpgcom wrjpgcom
|
137 |
all: libjpeg.$(A) cjpeg djpeg jpegtran rdjpgcom wrjpgcom
|
| 138 |
|
138 |
|
| 139 |
# Special compilation rules to support ansi2knr and libtool.
|
139 |
# Special compilation rules to support ansi2knr and libtool.
|
| 140 |
.SUFFIXES: .lo .la
|
140 |
.SUFFIXES: .lo .la
|
| 141 |
|
141 |
|
| 142 |
# How to compile with libtool.
|
142 |
# How to compile with libtool.
|
| 143 |
# .c.lo:
|
143 |
# .c.lo:
|
| 144 |
# $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $(srcdir)/$*.c
|
144 |
# $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $(srcdir)/$*.c
|
| 145 |
|
145 |
|
| 146 |
# How to use ansi2knr, when not using libtool.
|
146 |
# How to use ansi2knr, when not using libtool.
|
| 147 |
# .c.o:
|
147 |
# .c.o:
|
| 148 |
# ./ansi2knr $(srcdir)/$*.c knr/$*.c
|
148 |
# ./ansi2knr $(srcdir)/$*.c knr/$*.c
|
| 149 |
# $(CC) $(CFLAGS) -c knr/$*.c
|
149 |
# $(CC) $(CFLAGS) -c knr/$*.c
|
| 150 |
# $(RM) knr/$*.c
|
150 |
# $(RM) knr/$*.c
|
| 151 |
|
151 |
|
| 152 |
# How to use ansi2knr AND libtool.
|
152 |
# How to use ansi2knr AND libtool.
|
| 153 |
# .c.lo:
|
153 |
# .c.lo:
|
| 154 |
# ./ansi2knr $(srcdir)/$*.c knr/$*.c
|
154 |
# ./ansi2knr $(srcdir)/$*.c knr/$*.c
|
| 155 |
# $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c knr/$*.c
|
155 |
# $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c knr/$*.c
|
| 156 |
# $(RM) knr/$*.c
|
156 |
# $(RM) knr/$*.c
|
| 157 |
|
157 |
|
| 158 |
ansi2knr: ansi2knr.c
|
158 |
ansi2knr: ansi2knr.c
|
| 159 |
$(CC) $(CFLAGS) $(ANSI2KNRFLAGS) -o ansi2knr $(srcdir)/ansi2knr.c
|
159 |
$(CC) $(CFLAGS) $(ANSI2KNRFLAGS) -o ansi2knr $(srcdir)/ansi2knr.c
|
| 160 |
$(MKDIR) knr
|
160 |
$(MKDIR) knr
|
| 161 |
|
161 |
|
| 162 |
# the library:
|
162 |
# the library:
|
| 163 |
|
163 |
|
| 164 |
# without libtool:
|
164 |
# without libtool:
|
| 165 |
libjpeg.a: $(LIBOBJECTS)
|
165 |
libjpeg.a: $(LIBOBJECTS)
|
| 166 |
$(RM) libjpeg.a
|
166 |
$(RM) libjpeg.a
|
| 167 |
$(AR) libjpeg.a $(LIBOBJECTS)
|
167 |
$(AR) libjpeg.a $(LIBOBJECTS)
|
| 168 |
$(RANLIB) libjpeg.a
|
168 |
$(RANLIB) libjpeg.a
|
| 169 |
|
169 |
|
| 170 |
# with libtool:
|
170 |
# with libtool:
|
| 171 |
libjpeg.la: $(LIBOBJECTS)
|
171 |
libjpeg.la: $(LIBOBJECTS)
|
| 172 |
$(LIBTOOL) --mode=link $(CC) -o libjpeg.la $(LIBOBJECTS) \
|
172 |
$(LIBTOOL) --mode=link $(CC) -o libjpeg.la $(LIBOBJECTS) \
|
| 173 |
-rpath $(libdir) -version-info $(JPEG_LIB_VERSION)
|
173 |
-rpath $(libdir) -version-info $(JPEG_LIB_VERSION)
|
| 174 |
|
174 |
|
| 175 |
# sample programs:
|
175 |
# sample programs:
|
| 176 |
|
176 |
|
| 177 |
cjpeg: $(COBJECTS) libjpeg.$(A)
|
177 |
cjpeg: $(COBJECTS) libjpeg.$(A)
|
| 178 |
$(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) libjpeg.$(A) $(LDLIBS)
|
178 |
$(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) libjpeg.$(A) $(LDLIBS)
|
| 179 |
|
179 |
|
| 180 |
djpeg: $(DOBJECTS) libjpeg.$(A)
|
180 |
djpeg: $(DOBJECTS) libjpeg.$(A)
|
| 181 |
$(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) libjpeg.$(A) $(LDLIBS)
|
181 |
$(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) libjpeg.$(A) $(LDLIBS)
|
| 182 |
|
182 |
|
| 183 |
jpegtran: $(TROBJECTS) libjpeg.$(A)
|
183 |
jpegtran: $(TROBJECTS) libjpeg.$(A)
|
| 184 |
$(LN) $(LDFLAGS) -o jpegtran $(TROBJECTS) libjpeg.$(A) $(LDLIBS)
|
184 |
$(LN) $(LDFLAGS) -o jpegtran $(TROBJECTS) libjpeg.$(A) $(LDLIBS)
|
| 185 |
|
185 |
|
| 186 |
rdjpgcom: rdjpgcom.$(O)
|
186 |
rdjpgcom: rdjpgcom.$(O)
|
| 187 |
$(LN) $(LDFLAGS) -o rdjpgcom rdjpgcom.$(O) $(LDLIBS)
|
187 |
$(LN) $(LDFLAGS) -o rdjpgcom rdjpgcom.$(O) $(LDLIBS)
|
| 188 |
|
188 |
|
| 189 |
wrjpgcom: wrjpgcom.$(O)
|
189 |
wrjpgcom: wrjpgcom.$(O)
|
| 190 |
$(LN) $(LDFLAGS) -o wrjpgcom wrjpgcom.$(O) $(LDLIBS)
|
190 |
$(LN) $(LDFLAGS) -o wrjpgcom wrjpgcom.$(O) $(LDLIBS)
|
| 191 |
|
191 |
|
| 192 |
# Installation rules:
|
192 |
# Installation rules:
|
| 193 |
|
193 |
|
| 194 |
install: cjpeg djpeg jpegtran rdjpgcom wrjpgcom
|
194 |
install: cjpeg djpeg jpegtran rdjpgcom wrjpgcom
|
| 195 |
$(INSTALL_PROGRAM) cjpeg $(bindir)/$(binprefix)cjpeg
|
195 |
$(INSTALL_PROGRAM) cjpeg $(bindir)/$(binprefix)cjpeg
|
| 196 |
$(INSTALL_PROGRAM) djpeg $(bindir)/$(binprefix)djpeg
|
196 |
$(INSTALL_PROGRAM) djpeg $(bindir)/$(binprefix)djpeg
|
| 197 |
$(INSTALL_PROGRAM) jpegtran $(bindir)/$(binprefix)jpegtran
|
197 |
$(INSTALL_PROGRAM) jpegtran $(bindir)/$(binprefix)jpegtran
|
| 198 |
$(INSTALL_PROGRAM) rdjpgcom $(bindir)/$(binprefix)rdjpgcom
|
198 |
$(INSTALL_PROGRAM) rdjpgcom $(bindir)/$(binprefix)rdjpgcom
|
| 199 |
$(INSTALL_PROGRAM) wrjpgcom $(bindir)/$(binprefix)wrjpgcom
|
199 |
$(INSTALL_PROGRAM) wrjpgcom $(bindir)/$(binprefix)wrjpgcom
|
| 200 |
$(INSTALL_DATA) $(srcdir)/cjpeg.1 $(mandir)/$(manprefix)cjpeg.$(manext)
|
200 |
$(INSTALL_DATA) $(srcdir)/cjpeg.1 $(mandir)/$(manprefix)cjpeg.$(manext)
|
| 201 |
$(INSTALL_DATA) $(srcdir)/djpeg.1 $(mandir)/$(manprefix)djpeg.$(manext)
|
201 |
$(INSTALL_DATA) $(srcdir)/djpeg.1 $(mandir)/$(manprefix)djpeg.$(manext)
|
| 202 |
$(INSTALL_DATA) $(srcdir)/jpegtran.1 $(mandir)/$(manprefix)jpegtran.$(manext)
|
202 |
$(INSTALL_DATA) $(srcdir)/jpegtran.1 $(mandir)/$(manprefix)jpegtran.$(manext)
|
| 203 |
$(INSTALL_DATA) $(srcdir)/rdjpgcom.1 $(mandir)/$(manprefix)rdjpgcom.$(manext)
|
203 |
$(INSTALL_DATA) $(srcdir)/rdjpgcom.1 $(mandir)/$(manprefix)rdjpgcom.$(manext)
|
| 204 |
$(INSTALL_DATA) $(srcdir)/wrjpgcom.1 $(mandir)/$(manprefix)wrjpgcom.$(manext)
|
204 |
$(INSTALL_DATA) $(srcdir)/wrjpgcom.1 $(mandir)/$(manprefix)wrjpgcom.$(manext)
|
| 205 |
|
205 |
|
| 206 |
install-lib: libjpeg.$(A) install-headers
|
206 |
install-lib: libjpeg.$(A) install-headers
|
| 207 |
$(INSTALL_LIB) libjpeg.$(A) $(libdir)/$(binprefix)libjpeg.$(A)
|
207 |
$(INSTALL_LIB) libjpeg.$(A) $(libdir)/$(binprefix)libjpeg.$(A)
|
| 208 |
|
208 |
|
| 209 |
install-headers: jconfig.h
|
209 |
install-headers: jconfig.h
|
| 210 |
$(INSTALL_DATA) jconfig.h $(includedir)/jconfig.h
|
210 |
$(INSTALL_DATA) jconfig.h $(includedir)/jconfig.h
|
| 211 |
$(INSTALL_DATA) $(srcdir)/jpeglib.h $(includedir)/jpeglib.h
|
211 |
$(INSTALL_DATA) $(srcdir)/jpeglib.h $(includedir)/jpeglib.h
|
| 212 |
$(INSTALL_DATA) $(srcdir)/jmorecfg.h $(includedir)/jmorecfg.h
|
212 |
$(INSTALL_DATA) $(srcdir)/jmorecfg.h $(includedir)/jmorecfg.h
|
| 213 |
$(INSTALL_DATA) $(srcdir)/jerror.h $(includedir)/jerror.h
|
213 |
$(INSTALL_DATA) $(srcdir)/jerror.h $(includedir)/jerror.h
|
| 214 |
|
214 |
|
| 215 |
clean:
|
215 |
clean:
|
| 216 |
$(RM) *.o *.lo libjpeg.a libjpeg.la
|
216 |
$(RM) *.o *.lo libjpeg.a libjpeg.la
|
| 217 |
$(RM) cjpeg djpeg jpegtran rdjpgcom wrjpgcom
|
217 |
$(RM) cjpeg djpeg jpegtran rdjpgcom wrjpgcom
|
| 218 |
$(RM) ansi2knr core testout* config.log config.status
|
218 |
$(RM) ansi2knr core testout* config.log config.status
|
| 219 |
$(RM) -r knr .libs _libs
|
219 |
$(RM) -r knr .libs _libs
|
| 220 |
|
220 |
|
| 221 |
distclean: clean
|
221 |
distclean: clean
|
| 222 |
$(RM) Makefile jconfig.h libtool config.cache
|
222 |
$(RM) Makefile jconfig.h libtool config.cache
|
| 223 |
|
223 |
|
| 224 |
test: cjpeg djpeg jpegtran
|
224 |
test: cjpeg djpeg jpegtran
|
| 225 |
$(RM) testout*
|
225 |
$(RM) testout*
|
| 226 |
./djpeg -dct int -ppm -outfile testout.ppm $(srcdir)/testorig.jpg
|
226 |
./djpeg -dct int -ppm -outfile testout.ppm $(srcdir)/testorig.jpg
|
| 227 |
./djpeg -dct int -bmp -colors 256 -outfile testout.bmp $(srcdir)/testorig.jpg
|
227 |
./djpeg -dct int -bmp -colors 256 -outfile testout.bmp $(srcdir)/testorig.jpg
|
| 228 |
./cjpeg -dct int -outfile testout.jpg $(srcdir)/testimg.ppm
|
228 |
./cjpeg -dct int -outfile testout.jpg $(srcdir)/testimg.ppm
|
| 229 |
./djpeg -dct int -ppm -outfile testoutp.ppm $(srcdir)/testprog.jpg
|
229 |
./djpeg -dct int -ppm -outfile testoutp.ppm $(srcdir)/testprog.jpg
|
| 230 |
./cjpeg -dct int -progressive -opt -outfile testoutp.jpg $(srcdir)/testimg.ppm
|
230 |
./cjpeg -dct int -progressive -opt -outfile testoutp.jpg $(srcdir)/testimg.ppm
|
| 231 |
./jpegtran -outfile testoutt.jpg $(srcdir)/testprog.jpg
|
231 |
./jpegtran -outfile testoutt.jpg $(srcdir)/testprog.jpg
|
| 232 |
cmp $(srcdir)/testimg.ppm testout.ppm
|
232 |
cmp $(srcdir)/testimg.ppm testout.ppm
|
| 233 |
cmp $(srcdir)/testimg.bmp testout.bmp
|
233 |
cmp $(srcdir)/testimg.bmp testout.bmp
|
| 234 |
cmp $(srcdir)/testimg.jpg testout.jpg
|
234 |
cmp $(srcdir)/testimg.jpg testout.jpg
|
| 235 |
cmp $(srcdir)/testimg.ppm testoutp.ppm
|
235 |
cmp $(srcdir)/testimg.ppm testoutp.ppm
|
| 236 |
cmp $(srcdir)/testimgp.jpg testoutp.jpg
|
236 |
cmp $(srcdir)/testimgp.jpg testoutp.jpg
|
| 237 |
cmp $(srcdir)/testorig.jpg testoutt.jpg
|
237 |
cmp $(srcdir)/testorig.jpg testoutt.jpg
|
| 238 |
|
238 |
|
| 239 |
check: test
|
239 |
check: test
|
| 240 |
|
240 |
|
| 241 |
# Mistake catcher:
|
241 |
# Mistake catcher:
|
| 242 |
|
242 |
|
| 243 |
jconfig.h: jconfig.doc
|
243 |
jconfig.h: jconfig.doc
|
| 244 |
echo You must prepare a system-dependent jconfig.h file.
|
244 |
echo You must prepare a system-dependent jconfig.h file.
|
| 245 |
echo Please read the installation directions in install.doc.
|
245 |
echo Please read the installation directions in install.doc.
|
| 246 |
exit 1
|
246 |
exit 1
|
| 247 |
|
247 |
|
| 248 |
# GNU Make likes to know which target names are not really files to be made:
|
248 |
# GNU Make likes to know which target names are not really files to be made:
|
| 249 |
.PHONY: all install install-lib install-headers clean distclean test check
|
249 |
.PHONY: all install install-lib install-headers clean distclean test check
|
| 250 |
|
250 |
|
| 251 |
|
251 |
|
| 252 |
jcapimin.$(O): jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
252 |
jcapimin.$(O): jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 253 |
jcapistd.$(O): jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
253 |
jcapistd.$(O): jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 254 |
jccoefct.$(O): jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
254 |
jccoefct.$(O): jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 255 |
jccolor.$(O): jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
255 |
jccolor.$(O): jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 256 |
jcdctmgr.$(O): jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
256 |
jcdctmgr.$(O): jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 257 |
jchuff.$(O): jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
|
257 |
jchuff.$(O): jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
|
| 258 |
jcinit.$(O): jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
258 |
jcinit.$(O): jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 259 |
jcmainct.$(O): jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
259 |
jcmainct.$(O): jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 260 |
jcmarker.$(O): jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
260 |
jcmarker.$(O): jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 261 |
jcmaster.$(O): jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
261 |
jcmaster.$(O): jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 262 |
jcomapi.$(O): jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
262 |
jcomapi.$(O): jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 263 |
jcparam.$(O): jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
263 |
jcparam.$(O): jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 264 |
jcphuff.$(O): jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
|
264 |
jcphuff.$(O): jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
|
| 265 |
jcprepct.$(O): jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
265 |
jcprepct.$(O): jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 266 |
jcsample.$(O): jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
266 |
jcsample.$(O): jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 267 |
jctrans.$(O): jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
267 |
jctrans.$(O): jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 268 |
jdapimin.$(O): jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
268 |
jdapimin.$(O): jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 269 |
jdapistd.$(O): jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
269 |
jdapistd.$(O): jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 270 |
jdatadst.$(O): jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
|
270 |
jdatadst.$(O): jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
|
| 271 |
jdatasrc.$(O): jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
|
271 |
jdatasrc.$(O): jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
|
| 272 |
jdcoefct.$(O): jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
272 |
jdcoefct.$(O): jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 273 |
jdcolor.$(O): jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
273 |
jdcolor.$(O): jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 274 |
jddctmgr.$(O): jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
274 |
jddctmgr.$(O): jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 275 |
jdhuff.$(O): jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
|
275 |
jdhuff.$(O): jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
|
| 276 |
jdinput.$(O): jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
276 |
jdinput.$(O): jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 277 |
jdmainct.$(O): jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
277 |
jdmainct.$(O): jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 278 |
jdmarker.$(O): jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
278 |
jdmarker.$(O): jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 279 |
jdmaster.$(O): jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
279 |
jdmaster.$(O): jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 280 |
jdmerge.$(O): jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
280 |
jdmerge.$(O): jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 281 |
jdphuff.$(O): jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
|
281 |
jdphuff.$(O): jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
|
| 282 |
jdpostct.$(O): jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
282 |
jdpostct.$(O): jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 283 |
jdsample.$(O): jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
283 |
jdsample.$(O): jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 284 |
jdtrans.$(O): jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
284 |
jdtrans.$(O): jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 285 |
jerror.$(O): jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
|
285 |
jerror.$(O): jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
|
| 286 |
jfdctflt.$(O): jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
286 |
jfdctflt.$(O): jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 287 |
jfdctfst.$(O): jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
287 |
jfdctfst.$(O): jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 288 |
jfdctint.$(O): jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
288 |
jfdctint.$(O): jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 289 |
jidctflt.$(O): jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
289 |
jidctflt.$(O): jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 290 |
jidctfst.$(O): jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
290 |
jidctfst.$(O): jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 291 |
jidctint.$(O): jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
291 |
jidctint.$(O): jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 292 |
jidctred.$(O): jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
292 |
jidctred.$(O): jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
|
| 293 |
jquant1.$(O): jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
293 |
jquant1.$(O): jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 294 |
jquant2.$(O): jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
294 |
jquant2.$(O): jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 295 |
jutils.$(O): jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
295 |
jutils.$(O): jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
|
| 296 |
jmemmgr.$(O): jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
296 |
jmemmgr.$(O): jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
| 297 |
jmemansi.$(O): jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
297 |
jmemansi.$(O): jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
| 298 |
jmemname.$(O): jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
298 |
jmemname.$(O): jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
| 299 |
jmemnobs.$(O): jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
299 |
jmemnobs.$(O): jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
| 300 |
jmemdos.$(O): jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
300 |
jmemdos.$(O): jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
| 301 |
jmemmac.$(O): jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
301 |
jmemmac.$(O): jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
|
| 302 |
cjpeg.$(O): cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
|
302 |
cjpeg.$(O): cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
|
| 303 |
djpeg.$(O): djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
|
303 |
djpeg.$(O): djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
|
| 304 |
jpegtran.$(O): jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
|
304 |
jpegtran.$(O): jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
|
| 305 |
rdjpgcom.$(O): rdjpgcom.c jinclude.h jconfig.h
|
305 |
rdjpgcom.$(O): rdjpgcom.c jinclude.h jconfig.h
|
| 306 |
wrjpgcom.$(O): wrjpgcom.c jinclude.h jconfig.h
|
306 |
wrjpgcom.$(O): wrjpgcom.c jinclude.h jconfig.h
|
| 307 |
cdjpeg.$(O): cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
307 |
cdjpeg.$(O): cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 308 |
rdcolmap.$(O): rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
308 |
rdcolmap.$(O): rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 309 |
rdswitch.$(O): rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
309 |
rdswitch.$(O): rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 310 |
transupp.$(O): transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
|
310 |
transupp.$(O): transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
|
| 311 |
rdppm.$(O): rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
311 |
rdppm.$(O): rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 312 |
wrppm.$(O): wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
312 |
wrppm.$(O): wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 313 |
rdgif.$(O): rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
313 |
rdgif.$(O): rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 314 |
wrgif.$(O): wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
314 |
wrgif.$(O): wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 315 |
rdtarga.$(O): rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
315 |
rdtarga.$(O): rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 316 |
wrtarga.$(O): wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
316 |
wrtarga.$(O): wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 317 |
rdbmp.$(O): rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
317 |
rdbmp.$(O): rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 318 |
wrbmp.$(O): wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
318 |
wrbmp.$(O): wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 319 |
rdrle.$(O): rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
319 |
rdrle.$(O): rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
| 320 |
wrrle.$(O): wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|
320 |
wrrle.$(O): wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
|