blob: 57081f7e1397a5e56abd79645f73e33809a39a4e [file] [log] [blame]
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +00001noinst_LTLIBRARIES = libjpeg.la
2
Adam Tkacda5a1fe2008-10-22 11:19:25 +00003HDRS = jchuff.h jdct.h jdhuff.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
DRC2e7b76b2009-04-03 12:04:24 +00004 jpegint.h jpeglib.h jversion.h jsimd.h jsimddct.h turbojpeg.h
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +00005
6libjpeg_la_SOURCES = $(HDRS) jcapimin.c jcapistd.c jccoefct.c jccolor.c \
7 jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
8 jcomapi.c jcparam.c jcphuff.c jcprepct.c jcsample.c jctrans.c \
9 jdapimin.c jdapistd.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
10 jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
11 jdmerge.c jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c \
12 jfdctflt.c jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c \
Pierre Ossman59a39382009-03-09 13:15:56 +000013 jidctred.c jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c \
14 jsimd.c
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000015
Pierre Ossman2ae181c2009-03-09 13:21:27 +000016if WITH_SIMD
17
Pierre Ossman3a65ef42009-03-16 13:34:18 +000018SUBDIRS = simd
19libjpeg_la_LIBADD = simd/libsimd.la
Pierre Ossman2ae181c2009-03-09 13:21:27 +000020
21endif
22
DRC2e7b76b2009-04-03 12:04:24 +000023TSTHDRS = turbojpeg.h rrutil.h rrtimer.h
24
DRC73de9822009-06-25 20:41:17 +000025noinst_PROGRAMS = jpgtest jpegut cjpeg djpeg
DRC2e7b76b2009-04-03 12:04:24 +000026
27jpgtest_SOURCES = $(TSTHDRS) jpgtest.cxx bmp.c turbojpegl.c
28
29jpgtest_LDADD = $(top_srcdir)/libjpeg.la
30
31jpegut_SOURCES = $(TSTHDRS) jpegut.c bmp.c turbojpegl.c
32
33jpegut_LDADD = $(top_srcdir)/libjpeg.la
DRC73de9822009-06-25 20:41:17 +000034
35cjpeg_SOURCES = cdjpeg.h cderror.h cdjpeg.c cjpeg.c rdbmp.c rdgif.c \
36 rdppm.c rdswitch.c rdtarga.c
37
38cjpeg_LDADD = $(top_srcdir)/libjpeg.la
39
40cjpeg_CFLAGS = -DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED \
41 -DTARGA_SUPPORTED
42
43djpeg_SOURCES = cdjpeg.h cderror.h cdjpeg.c djpeg.c rdcolmap.c rdswitch.c \
44 wrbmp.c wrgif.c wrppm.c wrtarga.c
45
46djpeg_LDADD = $(top_srcdir)/libjpeg.la
47
48djpeg_CFLAGS = -DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED \
49 -DTARGA_SUPPORTED