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