| Line 13... |
Line 13... |
| 13 |
# manager file. For Unix this is usually jmemnobs.o, but you may want
|
13 |
# manager file. For Unix this is usually jmemnobs.o, but you may want
|
| 14 |
# to use jmemansi.o or jmemname.o if you have limited swap space.
|
14 |
# to use jmemansi.o or jmemname.o if you have limited swap space.
|
| 15 |
SYSDEPMEM= jmemnobs.o
|
15 |
SYSDEPMEM= jmemnobs.o
|
| 16 |
|
16 |
|
| 17 |
# source files: JPEG library proper
|
17 |
# source files: JPEG library proper
|
| 18 |
ifeq ($(strip $(JPEGDIR)),jpeg-6b)
|
18 |
ifeq ($(strip $(JPEGDIR)),libjpeg-turbo)
|
| - |
|
19 |
LIBSOURCES= jcapimin.c jcapistd.c \
|
| 19 |
LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \
|
20 |
jccoefct.c jccolor.c jcdctmgr.c jchuff.c jcinit.c \
|
| 20 |
jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
|
21 |
jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
|
| 21 |
jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \
|
22 |
jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
|
| 22 |
jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \
|
23 |
jdapistd.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
|
| 23 |
jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c \
|
24 |
jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c \
|
| - |
|
25 |
jdmaster.c jdmerge.c jdphuff.c jdpostct.c jdsample.c \
|
| 24 |
jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \
|
26 |
jdtrans.c jerror.c jfdctflt.c jfdctfst.c jfdctint.c \
|
| 25 |
jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \
|
27 |
jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \
|
| 26 |
jquant2.c jutils.c jmemmgr.c
|
28 |
jquant2.c jutils.c jmemmgr.c jmemnobs.c jsimd_none.c
|
| 27 |
else
|
29 |
else
|
| 28 |
LIBSOURCES= jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c \
|
30 |
LIBSOURCES= jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c \
|
| 29 |
jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
|
31 |
jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
|
| 30 |
jcomapi.c jcparam.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
|
32 |
jcomapi.c jcparam.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
|
| 31 |
jdapistd.c jdarith.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
|
33 |
jdapistd.c jdarith.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
|
| 32 |
jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
|
34 |
jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
|
| 33 |
jdmerge.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \
|
35 |
jdmerge.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \
|
| 34 |
jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \
|
36 |
jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \
|
| 35 |
jquant2.c jutils.c jmemmgr.c
|
37 |
jquant2.c jutils.c jmemmgr.c
|
| 36 |
endif
|
38 |
endif
|
| 37 |
|
39 |
|
| 38 |
# These objectfiles are included in libjpeg.a
|
40 |
# These objectfiles are included in libjpeg.a
|
| 39 |
LIBOBJECTS= $(LIBSOURCES:.c=.o) $(SYSDEPMEM)
|
41 |
LIBOBJECTS= $(LIBSOURCES:.c=.o) $(SYSDEPMEM)
|
| 40 |
|
42 |
|