OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [services/] [gfx/] [mw/] [v2_0/] [src/] [jpeg-6b/] [Makefile] - Blame information for rev 344

Go to most recent revision | Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.