blob: 8043f096860826726530590780bd530a69b6ab0b [file] [log] [blame]
DRC211d1e72013-01-13 11:25:20 +00001lib_LTLIBRARIES = libjpeg.la
DRC6da61db2013-01-19 01:06:46 +00002libjpeg_la_LDFLAGS = -version-info ${LIBTOOL_CURRENT}:${SO_MINOR_VERSION}:${SO_AGE} -no-undefined
DRC211d1e72013-01-13 11:25:20 +00003include_HEADERS = jerror.h jmorecfg.h jpeglib.h
4
5if WITH_TURBOJPEG
6lib_LTLIBRARIES += libturbojpeg.la
DRC24211152013-04-27 22:18:29 +00007libturbojpeg_la_LDFLAGS = -version-info 1:0:1 -no-undefined
DRC211d1e72013-01-13 11:25:20 +00008include_HEADERS += turbojpeg.h
9endif
10
DRC0a945a12010-02-15 11:04:51 +000011nodist_include_HEADERS = jconfig.h
DRC0c0f3042010-01-28 05:34:53 +000012
Alex Naidis6eb7d372016-10-16 23:10:08 +020013pkgconfigdir = $(libdir)/pkgconfig
14pkgconfig_DATA = pkgscripts/libjpeg.pc
15if WITH_TURBOJPEG
16pkgconfig_DATA += pkgscripts/libturbojpeg.pc
17endif
DRC211d1e72013-01-13 11:25:20 +000018
Adam Tkacda5a1fe2008-10-22 11:19:25 +000019HDRS = jchuff.h jdct.h jdhuff.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
DRC6887f052014-04-20 09:23:01 +000020 jpegint.h jpeglib.h jversion.h jsimd.h jsimddct.h jpegcomp.h \
21 jpeg_nbits_table.h
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000022
DRCe3720042010-11-23 06:50:14 +000023libjpeg_la_SOURCES = $(HDRS) jcapimin.c jcapistd.c jccoefct.c jccolor.c \
24 jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
25 jcomapi.c jcparam.c jcphuff.c jcprepct.c jcsample.c jctrans.c \
26 jdapimin.c jdapistd.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
27 jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
28 jdmerge.c jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c \
29 jfdctflt.c jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c \
30 jidctred.c jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c
31
32if WITH_ARITH
DRCe3720042010-11-23 06:50:14 +000033libjpeg_la_SOURCES += jaricom.c
DRCe3720042010-11-23 06:50:14 +000034endif
35
36if WITH_ARITH_ENC
DRCe3720042010-11-23 06:50:14 +000037libjpeg_la_SOURCES += jcarith.c
DRCe3720042010-11-23 06:50:14 +000038endif
39
40if WITH_ARITH_DEC
DRCe3720042010-11-23 06:50:14 +000041libjpeg_la_SOURCES += jdarith.c
DRCe3720042010-11-23 06:50:14 +000042endif
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000043
DRC211d1e72013-01-13 11:25:20 +000044
45SUBDIRS = java
46
47
48if WITH_TURBOJPEG
49
DRC418dbdf2011-05-26 10:45:06 +000050libturbojpeg_la_SOURCES = $(libjpeg_la_SOURCES) turbojpeg.c turbojpeg.h \
DRC9b28def2011-05-21 14:37:15 +000051 transupp.c transupp.h jdatadst-tj.c jdatasrc-tj.c
DRCf8e00552011-02-04 11:06:36 +000052
DRCf2602ce2011-04-01 00:20:33 +000053if WITH_JAVA
DRCf8e00552011-02-04 11:06:36 +000054
55libturbojpeg_la_SOURCES += turbojpeg-jni.c
DRCe08c05f2011-03-31 08:03:26 +000056libturbojpeg_la_CFLAGS = ${JNI_CFLAGS}
DRCf8e00552011-02-04 11:06:36 +000057TJMAPFILE = turbojpeg-mapfile.jni
58
59else
60
61TJMAPFILE = turbojpeg-mapfile
62
63endif
64
65libturbojpeg_la_SOURCES += $(TJMAPFILE)
DRC6f8c6682010-02-16 05:03:51 +000066
67if VERSION_SCRIPT
DRC9fa95592011-02-25 00:23:44 +000068libturbojpeg_la_LDFLAGS += $(VERSION_SCRIPT_FLAG)$(srcdir)/$(TJMAPFILE)
DRC211d1e72013-01-13 11:25:20 +000069endif
DRC6f8c6682010-02-16 05:03:51 +000070
71endif
DRC1bf1a142010-02-11 06:39:32 +000072
DRC211d1e72013-01-13 11:25:20 +000073
74if VERSION_SCRIPT
75libjpeg_la_LDFLAGS += $(VERSION_SCRIPT_FLAG)libjpeg.map
76endif
77
78
DRC60cddeb2010-02-12 05:37:07 +000079if WITH_SIMD
80
DRCf2602ce2011-04-01 00:20:33 +000081SUBDIRS += simd
Pierre Ossman3a65ef42009-03-16 13:34:18 +000082libjpeg_la_LIBADD = simd/libsimd.la
DRC1bf1a142010-02-11 06:39:32 +000083libturbojpeg_la_LIBADD = simd/libsimd.la
Pierre Ossman2ae181c2009-03-09 13:21:27 +000084
DRC60cddeb2010-02-12 05:37:07 +000085else
86
87libjpeg_la_SOURCES += jsimd_none.c
88
89endif
90
DRC211d1e72013-01-13 11:25:20 +000091
92bin_PROGRAMS = cjpeg djpeg jpegtran rdjpgcom wrjpgcom
93noinst_PROGRAMS = jcstest
94
95
96if WITH_TURBOJPEG
97
98bin_PROGRAMS += tjbench
99
100noinst_PROGRAMS += tjunittest
DRC2e7b76b2009-04-03 12:04:24 +0000101
DRC3185cb92011-05-25 03:52:22 +0000102tjbench_SOURCES = tjbench.c bmp.h bmp.c tjutil.h tjutil.c rdbmp.c rdppm.c \
DRC18821f82011-05-24 17:07:51 +0000103 wrbmp.c wrppm.c
DRC2e7b76b2009-04-03 12:04:24 +0000104
DRC3185cb92011-05-25 03:52:22 +0000105tjbench_LDADD = libturbojpeg.la libjpeg.la -lm
DRC2e7b76b2009-04-03 12:04:24 +0000106
DRC3185cb92011-05-25 03:52:22 +0000107tjbench_CFLAGS = -DBMP_SUPPORTED -DPPM_SUPPORTED
DRCbe49b8c2011-05-24 13:41:27 +0000108
DRC3185cb92011-05-25 03:52:22 +0000109tjunittest_SOURCES = tjunittest.c tjutil.h tjutil.c
DRC2e7b76b2009-04-03 12:04:24 +0000110
DRC3185cb92011-05-25 03:52:22 +0000111tjunittest_LDADD = libturbojpeg.la
DRC73de9822009-06-25 20:41:17 +0000112
DRC211d1e72013-01-13 11:25:20 +0000113endif
114
115
DRCaee4f722014-08-09 23:06:07 +0000116cjpeg_SOURCES = cdjpeg.h cderror.h cdjpeg.c cjpeg.c rdgif.c rdppm.c rdswitch.c
117if WITH_12BIT
118else
119cjpeg_SOURCES += rdbmp.c rdtarga.c
120endif
DRC73de9822009-06-25 20:41:17 +0000121
DRC971d8512010-02-13 22:55:05 +0000122cjpeg_LDADD = libjpeg.la
DRC73de9822009-06-25 20:41:17 +0000123
DRCaee4f722014-08-09 23:06:07 +0000124cjpeg_CFLAGS = -DGIF_SUPPORTED -DPPM_SUPPORTED
125if WITH_12BIT
126else
127cjpeg_CFLAGS += -DBMP_SUPPORTED -DTARGA_SUPPORTED
128endif
DRC73de9822009-06-25 20:41:17 +0000129
130djpeg_SOURCES = cdjpeg.h cderror.h cdjpeg.c djpeg.c rdcolmap.c rdswitch.c \
DRCaee4f722014-08-09 23:06:07 +0000131 wrgif.c wrppm.c
132if WITH_12BIT
133else
134djpeg_SOURCES += wrbmp.c wrtarga.c
135endif
DRC73de9822009-06-25 20:41:17 +0000136
DRC971d8512010-02-13 22:55:05 +0000137djpeg_LDADD = libjpeg.la
DRC73de9822009-06-25 20:41:17 +0000138
DRCaee4f722014-08-09 23:06:07 +0000139djpeg_CFLAGS = -DGIF_SUPPORTED -DPPM_SUPPORTED
140if WITH_12BIT
141else
142djpeg_CFLAGS += -DBMP_SUPPORTED -DTARGA_SUPPORTED
143endif
DRC60fa0602010-02-12 06:01:49 +0000144
DRC0a945a12010-02-15 11:04:51 +0000145jpegtran_SOURCES = jpegtran.c rdswitch.c cdjpeg.c transupp.c transupp.h
DRC60fa0602010-02-12 06:01:49 +0000146
DRC971d8512010-02-13 22:55:05 +0000147jpegtran_LDADD = libjpeg.la
DRC60fa0602010-02-12 06:01:49 +0000148
DRC0a945a12010-02-15 11:04:51 +0000149rdjpgcom_SOURCES = rdjpgcom.c
DRC60fa0602010-02-12 06:01:49 +0000150
DRC971d8512010-02-13 22:55:05 +0000151rdjpgcom_LDADD = libjpeg.la
DRC60fa0602010-02-12 06:01:49 +0000152
153wrjpgcom_SOURCES = wrjpgcom.c
154
DRC971d8512010-02-13 22:55:05 +0000155wrjpgcom_LDADD = libjpeg.la
DRC60fa0602010-02-12 06:01:49 +0000156
DRCb76c8402011-12-19 15:01:55 +0000157jcstest_SOURCES = jcstest.c
158
159jcstest_LDADD = libjpeg.la
DRC0a945a12010-02-15 11:04:51 +0000160
DRCcbda81a2010-06-05 01:12:35 +0000161dist_man1_MANS = cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 wrjpgcom.1
DRC0a945a12010-02-15 11:04:51 +0000162
Alex Naidis6eb7d372016-10-16 23:10:08 +0200163DOCS= coderules.txt jconfig.txt change.log rdrle.c wrrle.c BUILDING.md \
164 ChangeLog.md
DRCa1647c82012-02-10 00:39:05 +0000165
Alex Naidis6eb7d372016-10-16 23:10:08 +0200166dist_doc_DATA = README.ijg README.md libjpeg.txt structure.txt usage.txt \
167 wizard.txt LICENSE.md
DRCa1647c82012-02-10 00:39:05 +0000168
DRCc69a1cd2015-02-23 19:06:44 +0000169exampledir = $(docdir)
DRC01bf9d92012-02-10 01:52:31 +0000170dist_example_DATA = example.c
DRC0a945a12010-02-15 11:04:51 +0000171
DRC750e0782011-05-10 21:05:49 +0000172
DRC0bf58f22013-02-06 23:51:08 +0000173EXTRA_DIST = win release $(DOCS) testimages CMakeLists.txt \
DRCa006fba2011-10-27 23:25:28 +0000174 sharedlib/CMakeLists.txt cmakescripts libjpeg.map.in doc doxygen.config \
DRC3f764b72014-12-14 11:47:49 +0000175 doxygen-extra.css jccolext.c jdcolext.c jdcol565.c jdmrgext.c jdmrg565.c \
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500176 jstdhuff.c jdcoefct.h jdmainct.h jdmaster.h jdsample.h \
DRC0ef076f2016-02-19 18:32:10 -0600177 md5/CMakeLists.txt
DRC0a945a12010-02-15 11:04:51 +0000178
179dist-hook:
180 rm -rf `find $(distdir) -name .svn`
181
182
DRC0bf58f22013-02-06 23:51:08 +0000183SUBDIRS += md5
184
DRCaee4f722014-08-09 23:06:07 +0000185if WITH_12BIT
186
187TESTORIG = testorig12.jpg
188MD5_JPEG_RGB_ISLOW = 9620f424569594bb9242b48498ad801f
189MD5_PPM_RGB_ISLOW = f3301d2219783b8b3d942b7239fa50c0
190MD5_JPEG_422_IFAST_OPT = 7322e3bd2f127f7de4b40d4480ce60e4
191MD5_PPM_422_IFAST = 79807fa552899e66a04708f533e16950
192MD5_PPM_422M_IFAST = 07737bfe8a7c1c87aaa393a0098d16b0
193MD5_JPEG_420_IFAST_Q100_PROG = a1da220b5604081863a504297ed59e55
194MD5_PPM_420_Q100_IFAST = 1b3730122709f53d007255e8dfd3305e
195MD5_PPM_420M_Q100_IFAST = 980a1a3c5bf9510022869d30b7d26566
196MD5_JPEG_GRAY_ISLOW = 235c90707b16e2e069f37c888b2636d9
197MD5_PPM_GRAY_ISLOW = 7213c10af507ad467da5578ca5ee1fca
198MD5_PPM_GRAY_ISLOW_RGB = e96ee81c30a6ed422d466338bd3de65d
199MD5_JPEG_420S_IFAST_OPT = 7af8e60be4d9c227ec63ac9b6630855e
DRC3af282d2015-01-16 06:53:36 +0000200MD5_JPEG_3x2_FLOAT_PROG_SSE = a8c17daf77b457725ec929e215b603f8
201MD5_PPM_3x2_FLOAT_SSE = 42876ab9e5c2f76a87d08db5fbd57956
202MD5_JPEG_3x2_FLOAT_PROG_32BIT = a8c17daf77b457725ec929e215b603f8
203MD5_PPM_3x2_FLOAT_32BIT = 42876ab9e5c2f76a87d08db5fbd57956
204MD5_PPM_3x2_FLOAT_64BIT = d6fbc71153b3d8ded484dbc17c7b9cf4
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500205MD5_JPEG_3x2_FLOAT_PROG_387 = bc6dbbefac2872f6b9d6c4a0ae60c3c0
206MD5_PPM_3x2_FLOAT_387 = bcc5723c61560463ac60f772e742d092
DRC3af282d2015-01-16 06:53:36 +0000207MD5_JPEG_3x2_IFAST_PROG = 1396cc2b7185cfe943d408c9d305339e
208MD5_PPM_3x2_IFAST = 3975985ef6eeb0a2cdc58daa651ccc00
DRCaee4f722014-08-09 23:06:07 +0000209MD5_PPM_420M_ISLOW_2_1 = 4ca6be2a6f326ff9eaab63e70a8259c0
210MD5_PPM_420M_ISLOW_15_8 = 12aa9f9534c1b3d7ba047322226365eb
211MD5_PPM_420M_ISLOW_13_8 = f7e22817c7b25e1393e4ec101e9d4e96
212MD5_PPM_420M_ISLOW_11_8 = 800a16f9f4dc9b293197bfe11be10a82
213MD5_PPM_420M_ISLOW_9_8 = 06b7a92a9bc69f4dc36ec40f1937d55c
214MD5_PPM_420M_ISLOW_7_8 = 3ec444a14a4ab4eab88ffc49c48eca43
215MD5_PPM_420M_ISLOW_3_4 = 3e726b7ea872445b19437d1c1d4f0d93
216MD5_PPM_420M_ISLOW_5_8 = a8a771abdc94301d20ffac119b2caccd
217MD5_PPM_420M_ISLOW_1_2 = b419124dd5568b085787234866102866
218MD5_PPM_420M_ISLOW_3_8 = 343d19015531b7bbe746124127244fa8
219MD5_PPM_420M_ISLOW_1_4 = 35fd59d866e44659edfa3c18db2a3edb
220MD5_PPM_420M_ISLOW_1_8 = ccaed48ac0aedefda5d4abe4013f4ad7
DRCe67a7e32015-06-27 08:10:31 +0000221MD5_PPM_420_ISLOW_SKIP15_31 = 86664cd9dc956536409e44e244d20a97
DRC0ef076f2016-02-19 18:32:10 -0600222MD5_PPM_420_ISLOW_PROG_CROP62x62_71_71 = 452a21656115a163029cfba5c04fa76a
DRCe67a7e32015-06-27 08:10:31 +0000223MD5_PPM_444_ISLOW_SKIP1_6 = ef63901f71ef7a75cd78253fc0914f84
DRC0ef076f2016-02-19 18:32:10 -0600224MD5_PPM_444_ISLOW_PROG_CROP98x98_13_13 = 15b173fb5872d9575572fbcc1b05956f
DRCaee4f722014-08-09 23:06:07 +0000225MD5_JPEG_CROP = cdb35ff4b4519392690ea040c56ea99c
226
227else
228
229TESTORIG = testorig.jpg
DRC66129dc2014-05-06 08:58:11 +0000230MD5_JPEG_RGB_ISLOW = 768e970dd57b340ff1b83c9d3d47c77b
231MD5_PPM_RGB_ISLOW = 00a257f5393fef8821f2b88ac7421291
DRC78df2e62014-05-12 09:23:57 +0000232MD5_BMP_RGB_ISLOW_565 = f07d2e75073e4bb10f6c6f4d36e2e3be
233MD5_BMP_RGB_ISLOW_565D = 4cfa0928ef3e6bb626d7728c924cfda4
DRC66129dc2014-05-06 08:58:11 +0000234MD5_JPEG_422_IFAST_OPT = 2540287b79d913f91665e660303ab2c8
235MD5_PPM_422_IFAST = 35bd6b3f833bad23de82acea847129fa
236MD5_PPM_422M_IFAST = 8dbc65323d62cca7c91ba02dd1cfa81d
DRC78df2e62014-05-12 09:23:57 +0000237MD5_BMP_422M_IFAST_565 = 3294bd4d9a1f2b3d08ea6020d0db7065
238MD5_BMP_422M_IFAST_565D = da98c9c7b6039511be4a79a878a9abc1
DRC66129dc2014-05-06 08:58:11 +0000239MD5_JPEG_420_IFAST_Q100_PROG = 990cbe0329c882420a2094da7e5adade
240MD5_PPM_420_Q100_IFAST = 5a732542015c278ff43635e473a8a294
241MD5_PPM_420M_Q100_IFAST = ff692ee9323a3b424894862557c092f1
242MD5_JPEG_GRAY_ISLOW = 72b51f894b8f4a10b3ee3066770aa38d
243MD5_PPM_GRAY_ISLOW = 8d3596c56eace32f205deccc229aa5ed
DRC78df2e62014-05-12 09:23:57 +0000244MD5_PPM_GRAY_ISLOW_RGB = 116424ac07b79e5e801f00508eab48ec
245MD5_BMP_GRAY_ISLOW_565 = 12f78118e56a2f48b966f792fedf23cc
246MD5_BMP_GRAY_ISLOW_565D = bdbbd616441a24354c98553df5dc82db
DRC66129dc2014-05-06 08:58:11 +0000247MD5_JPEG_420S_IFAST_OPT = 388708217ac46273ca33086b22827ed8
Alex Naidis6eb7d372016-10-16 23:10:08 +0200248# See README.md for more details on why this next bit is necessary.
DRC3af282d2015-01-16 06:53:36 +0000249MD5_JPEG_3x2_FLOAT_PROG_SSE = 343e3f8caf8af5986ebaf0bdc13b5c71
250MD5_PPM_3x2_FLOAT_SSE = 1a75f36e5904d6fc3a85a43da9ad89bb
251MD5_JPEG_3x2_FLOAT_PROG_32BIT = 9bca803d2042bd1eb03819e2bf92b3e5
252MD5_PPM_3x2_FLOAT_32BIT = f6bfab038438ed8f5522fbd33595dcdc
253MD5_PPM_3x2_FLOAT_64BIT = 0e917a34193ef976b679a6b069b1be26
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500254MD5_JPEG_3x2_FLOAT_PROG_387 = 1657664a410e0822c924b54f6f65e6e9
255MD5_PPM_3x2_FLOAT_387 = cb0a1f027f3d2917c902b5640214e025
DRC3af282d2015-01-16 06:53:36 +0000256MD5_JPEG_3x2_IFAST_PROG = 1ee5d2c1a77f2da495f993c8c7cceca5
257MD5_PPM_3x2_IFAST = fd283664b3b49127984af0a7f118fccd
DRC66129dc2014-05-06 08:58:11 +0000258MD5_JPEG_420_ISLOW_ARI = e986fb0a637a8d833d96e8a6d6d84ea1
259MD5_JPEG_444_ISLOW_PROGARI = 0a8f1c8f66e113c3cf635df0a475a617
260MD5_PPM_420M_IFAST_ARI = 72b59a99bcf1de24c5b27d151bde2437
261MD5_JPEG_420_ISLOW = 9a68f56bc76e466aa7e52f415d0f4a5f
262MD5_PPM_420M_ISLOW_2_1 = 9f9de8c0612f8d06869b960b05abf9c9
263MD5_PPM_420M_ISLOW_15_8 = b6875bc070720b899566cc06459b63b7
264MD5_PPM_420M_ISLOW_13_8 = bc3452573c8152f6ae552939ee19f82f
265MD5_PPM_420M_ISLOW_11_8 = d8cc73c0aaacd4556569b59437ba00a5
266MD5_PPM_420M_ISLOW_9_8 = d25e61bc7eac0002f5b393aa223747b6
267MD5_PPM_420M_ISLOW_7_8 = ddb564b7c74a09494016d6cd7502a946
268MD5_PPM_420M_ISLOW_3_4 = 8ed8e68808c3fbc4ea764fc9d2968646
269MD5_PPM_420M_ISLOW_5_8 = a3363274999da2366a024efae6d16c9b
270MD5_PPM_420M_ISLOW_1_2 = e692a315cea26b988c8e8b29a5dbcd81
271MD5_PPM_420M_ISLOW_3_8 = 79eca9175652ced755155c90e785a996
272MD5_PPM_420M_ISLOW_1_4 = 79cd778f8bf1a117690052cacdd54eca
273MD5_PPM_420M_ISLOW_1_8 = 391b3d4aca640c8567d6f8745eb2142f
274MD5_BMP_420_ISLOW_256 = 4980185e3776e89bd931736e1cddeee6
DRC78df2e62014-05-12 09:23:57 +0000275MD5_BMP_420_ISLOW_565 = bf9d13e16c4923b92e1faa604d7922cb
276MD5_BMP_420_ISLOW_565D = 6bde71526acc44bcff76f696df8638d2
277MD5_BMP_420M_ISLOW_565 = 8dc0185245353cfa32ad97027342216f
278MD5_BMP_420M_ISLOW_565D =d1be3a3339166255e76fa50a0d70d73e
DRCe67a7e32015-06-27 08:10:31 +0000279MD5_PPM_420_ISLOW_SKIP15_31 = c4c65c1e43d7275cd50328a61e6534f0
280MD5_PPM_420_ISLOW_ARI_SKIP16_139 = 087c6b123db16ac00cb88c5b590bb74a
DRC0ef076f2016-02-19 18:32:10 -0600281MD5_PPM_420_ISLOW_PROG_CROP62x62_71_71 = 26eb36ccc7d1f0cb80cdabb0ac8b5d99
282MD5_PPM_420_ISLOW_ARI_CROP53x53_4_4 = 886c6775af22370257122f8b16207e6d
DRCe67a7e32015-06-27 08:10:31 +0000283MD5_PPM_444_ISLOW_SKIP1_6 = 5606f86874cf26b8fcee1117a0a436a6
DRC0ef076f2016-02-19 18:32:10 -0600284MD5_PPM_444_ISLOW_PROG_CROP98x98_13_13 = db87dc7ce26bcdc7a6b56239ce2b9d6c
285MD5_PPM_444_ISLOW_ARI_CROP37x37_0_0 = cb57b32bd6d03e35432362f7bf184b6d
DRC211d1e72013-01-13 11:25:20 +0000286MD5_JPEG_CROP = b4197f377e621c4e9b1d20471432610d
287
DRCaee4f722014-08-09 23:06:07 +0000288endif
289
DRCcbc4b532015-01-16 06:37:03 +0000290.PHONY: test
DRCdd7f03b2015-01-16 06:45:54 +0000291test: tjquicktest tjbittest bittest
DRCcbc4b532015-01-16 06:37:03 +0000292
Alex Naidis6eb7d372016-10-16 23:10:08 +0200293if CROSS_COMPILING
294tjquicktest: testclean
295else
DRCcbc4b532015-01-16 06:37:03 +0000296tjquicktest: testclean all
Alex Naidis6eb7d372016-10-16 23:10:08 +0200297endif
DRC66129dc2014-05-06 08:58:11 +0000298
DRC211d1e72013-01-13 11:25:20 +0000299if WITH_TURBOJPEG
DRC38cb1ec2013-08-23 04:45:43 +0000300if WITH_JAVA
301 $(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest
302 $(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -bi
303 $(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -yuv
304 $(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -yuv -noyuvpad
305 $(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -yuv -bi
306 $(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -yuv -bi -noyuvpad
307endif
DRC3185cb92011-05-25 03:52:22 +0000308 ./tjunittest
309 ./tjunittest -alloc
310 ./tjunittest -yuv
DRC910a3572013-10-30 23:02:57 +0000311 ./tjunittest -yuv -alloc
DRCf610d612013-04-26 10:33:29 +0000312 ./tjunittest -yuv -noyuvpad
DRC211d1e72013-01-13 11:25:20 +0000313endif
DRCdd7f03b2015-01-16 06:45:54 +0000314 echo GREAT SUCCESS!
315
Alex Naidis6eb7d372016-10-16 23:10:08 +0200316if CROSS_COMPILING
317tjbittest: testclean
318else
DRCdd7f03b2015-01-16 06:45:54 +0000319tjbittest: testclean all
Alex Naidis6eb7d372016-10-16 23:10:08 +0200320endif
DRCdd7f03b2015-01-16 06:45:54 +0000321
322if WITH_TURBOJPEG
323
324MD5_PPM_GRAY_TILE = 89d3ca21213d9d864b50b4e4e7de4ca6
325MD5_PPM_420_8x8_TILE = 847fceab15c5b7b911cb986cf0f71de3
326MD5_PPM_420_16x16_TILE = ca45552a93687e078f7137cc4126a7b0
327MD5_PPM_420_32x32_TILE = d8676f1d6b68df358353bba9844f4a00
328MD5_PPM_420_64x64_TILE = 4e4c1a3d7ea4bace4f868bcbe83b7050
329MD5_PPM_420_128x128_TILE = f24c3429c52265832beab9df72a0ceae
330MD5_PPM_420M_8x8_TILE = bc25320e1f4c31ce2e610e43e9fd173c
331MD5_PPM_420M_TILE = 75ffdf14602258c5c189522af57fa605
332MD5_PPM_422_8x8_TILE = d83dacd9fc73b0a6f10c09acad64eb1e
333MD5_PPM_422_16x16_TILE = 35077fb610d72dd743b1eb0cbcfe10fb
334MD5_PPM_422_32x32_TILE = e6902ed8a449ecc0f0d6f2bf945f65f7
335MD5_PPM_422_64x64_TILE = 2b4502a8f316cedbde1da7bce3d2231e
336MD5_PPM_422_128x128_TILE = f0b5617d578f5e13c8eee215d64d4877
337MD5_PPM_422M_8x8_TILE = 828941d7f41cd6283abd6beffb7fd51d
338MD5_PPM_422M_TILE = e877ae1324c4a280b95376f7f018172f
339MD5_PPM_444_TILE = 7964e41e67cfb8d0a587c0aa4798f9c3
340
341# Test compressing from/decompressing to an arbitrary subregion of a larger
342# image buffer
343 cp $(srcdir)/testimages/testorig.ppm testout_tile.ppm
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500344 ./tjbench testout_tile.ppm 95 -rgb -quiet -tile -benchtime 0.01 -warmup 0 >/dev/null 2>&1
DRCdd7f03b2015-01-16 06:45:54 +0000345 for i in 8 16 32 64 128; do \
346 md5/md5cmp $(MD5_PPM_GRAY_TILE) testout_tile_GRAY_Q95_$$i\x$$i.ppm; \
347 done
348 md5/md5cmp $(MD5_PPM_420_8x8_TILE) testout_tile_420_Q95_8x8.ppm
349 md5/md5cmp $(MD5_PPM_420_16x16_TILE) testout_tile_420_Q95_16x16.ppm
350 md5/md5cmp $(MD5_PPM_420_32x32_TILE) testout_tile_420_Q95_32x32.ppm
351 md5/md5cmp $(MD5_PPM_420_64x64_TILE) testout_tile_420_Q95_64x64.ppm
352 md5/md5cmp $(MD5_PPM_420_128x128_TILE) testout_tile_420_Q95_128x128.ppm
353 md5/md5cmp $(MD5_PPM_422_8x8_TILE) testout_tile_422_Q95_8x8.ppm
354 md5/md5cmp $(MD5_PPM_422_16x16_TILE) testout_tile_422_Q95_16x16.ppm
355 md5/md5cmp $(MD5_PPM_422_32x32_TILE) testout_tile_422_Q95_32x32.ppm
356 md5/md5cmp $(MD5_PPM_422_64x64_TILE) testout_tile_422_Q95_64x64.ppm
357 md5/md5cmp $(MD5_PPM_422_128x128_TILE) testout_tile_422_Q95_128x128.ppm
358 for i in 8 16 32 64 128; do \
359 md5/md5cmp $(MD5_PPM_444_TILE) testout_tile_444_Q95_$$i\x$$i.ppm; \
360 done
Alex Naidis6eb7d372016-10-16 23:10:08 +0200361 rm -f testout_tile_GRAY_* testout_tile_420_* testout_tile_422_* testout_tile_444_*
DRCdd7f03b2015-01-16 06:45:54 +0000362
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500363 ./tjbench testout_tile.ppm 95 -rgb -fastupsample -quiet -tile -benchtime 0.01 -warmup 0 >/dev/null 2>&1
DRCdd7f03b2015-01-16 06:45:54 +0000364 md5/md5cmp $(MD5_PPM_420M_8x8_TILE) testout_tile_420_Q95_8x8.ppm
365 for i in 16 32 64 128; do \
366 md5/md5cmp $(MD5_PPM_420M_TILE) testout_tile_420_Q95_$$i\x$$i.ppm; \
367 done
368 md5/md5cmp $(MD5_PPM_422M_8x8_TILE) testout_tile_422_Q95_8x8.ppm
369 for i in 16 32 64 128; do \
370 md5/md5cmp $(MD5_PPM_422M_TILE) testout_tile_422_Q95_$$i\x$$i.ppm; \
371 done
Alex Naidis6eb7d372016-10-16 23:10:08 +0200372 rm -f testout_tile_GRAY_* testout_tile_420_* testout_tile_422_* testout_tile_444_* testout_tile.ppm
DRCdd7f03b2015-01-16 06:45:54 +0000373 echo GREAT SUCCESS!
374
375endif
DRC66129dc2014-05-06 08:58:11 +0000376
Alex Naidis6eb7d372016-10-16 23:10:08 +0200377if CROSS_COMPILING
378bittest: testclean
379else
DRCcbc4b532015-01-16 06:37:03 +0000380bittest: testclean all
Alex Naidis6eb7d372016-10-16 23:10:08 +0200381endif
DRCcbc4b532015-01-16 06:37:03 +0000382
DRC66129dc2014-05-06 08:58:11 +0000383# These tests are carefully crafted to provide full coverage of as many of the
384# underlying algorithms as possible (including all of the SIMD-accelerated
385# ones.)
386
387# CC: null SAMP: fullsize FDCT: islow ENT: huff
388 ./cjpeg -rgb -dct int -outfile testout_rgb_islow.jpg $(srcdir)/testimages/testorig.ppm
389 md5/md5cmp $(MD5_JPEG_RGB_ISLOW) testout_rgb_islow.jpg
390# CC: null SAMP: fullsize IDCT: islow ENT: huff
391 ./djpeg -dct int -ppm -outfile testout_rgb_islow.ppm testout_rgb_islow.jpg
392 md5/md5cmp $(MD5_PPM_RGB_ISLOW) testout_rgb_islow.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200393 rm -f testout_rgb_islow.ppm
DRCaee4f722014-08-09 23:06:07 +0000394if WITH_12BIT
Alex Naidis6eb7d372016-10-16 23:10:08 +0200395 rm -f testout_rgb_islow.jpg
DRCaee4f722014-08-09 23:06:07 +0000396else
DRC78df2e62014-05-12 09:23:57 +0000397# CC: RGB->RGB565 SAMP: fullsize IDCT: islow ENT: huff
398 ./djpeg -dct int -rgb565 -dither none -bmp -outfile testout_rgb_islow_565.bmp testout_rgb_islow.jpg
399 md5/md5cmp $(MD5_BMP_RGB_ISLOW_565) testout_rgb_islow_565.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200400 rm -f testout_rgb_islow_565.bmp
DRC78df2e62014-05-12 09:23:57 +0000401# CC: RGB->RGB565 (dithered) SAMP: fullsize IDCT: islow ENT: huff
402 ./djpeg -dct int -rgb565 -bmp -outfile testout_rgb_islow_565D.bmp testout_rgb_islow.jpg
403 md5/md5cmp $(MD5_BMP_RGB_ISLOW_565D) testout_rgb_islow_565D.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200404 rm -f testout_rgb_islow_565D.bmp testout_rgb_islow.jpg
DRCaee4f722014-08-09 23:06:07 +0000405endif
DRC66129dc2014-05-06 08:58:11 +0000406
407# CC: RGB->YCC SAMP: fullsize/h2v1 FDCT: ifast ENT: 2-pass huff
408 ./cjpeg -sample 2x1 -dct fast -opt -outfile testout_422_ifast_opt.jpg $(srcdir)/testimages/testorig.ppm
409 md5/md5cmp $(MD5_JPEG_422_IFAST_OPT) testout_422_ifast_opt.jpg
410# CC: YCC->RGB SAMP: fullsize/h2v1 fancy IDCT: ifast ENT: huff
411 ./djpeg -dct fast -outfile testout_422_ifast.ppm testout_422_ifast_opt.jpg
412 md5/md5cmp $(MD5_PPM_422_IFAST) testout_422_ifast.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200413 rm -f testout_422_ifast.ppm
DRC66129dc2014-05-06 08:58:11 +0000414# CC: YCC->RGB SAMP: h2v1 merged IDCT: ifast ENT: huff
DRC78df2e62014-05-12 09:23:57 +0000415 ./djpeg -dct fast -nosmooth -outfile testout_422m_ifast.ppm testout_422_ifast_opt.jpg
DRC66129dc2014-05-06 08:58:11 +0000416 md5/md5cmp $(MD5_PPM_422M_IFAST) testout_422m_ifast.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200417 rm -f testout_422m_ifast.ppm
DRCaee4f722014-08-09 23:06:07 +0000418if WITH_12BIT
Alex Naidis6eb7d372016-10-16 23:10:08 +0200419 rm -f testout_422_ifast_opt.jpg
DRCaee4f722014-08-09 23:06:07 +0000420else
DRC78df2e62014-05-12 09:23:57 +0000421# CC: YCC->RGB565 SAMP: h2v1 merged IDCT: ifast ENT: huff
422 ./djpeg -dct int -nosmooth -rgb565 -dither none -bmp -outfile testout_422m_ifast_565.bmp testout_422_ifast_opt.jpg
423 md5/md5cmp $(MD5_BMP_422M_IFAST_565) testout_422m_ifast_565.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200424 rm -f testout_422m_ifast_565.bmp
DRC78df2e62014-05-12 09:23:57 +0000425# CC: YCC->RGB565 (dithered) SAMP: h2v1 merged IDCT: ifast ENT: huff
426 ./djpeg -dct int -nosmooth -rgb565 -bmp -outfile testout_422m_ifast_565D.bmp testout_422_ifast_opt.jpg
427 md5/md5cmp $(MD5_BMP_422M_IFAST_565D) testout_422m_ifast_565D.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200428 rm -f testout_422m_ifast_565D.bmp testout_422_ifast_opt.jpg
DRCaee4f722014-08-09 23:06:07 +0000429endif
DRC66129dc2014-05-06 08:58:11 +0000430
431# CC: RGB->YCC SAMP: fullsize/h2v2 FDCT: ifast ENT: prog huff
DRC78df2e62014-05-12 09:23:57 +0000432 ./cjpeg -sample 2x2 -quality 100 -dct fast -prog -outfile testout_420_q100_ifast_prog.jpg $(srcdir)/testimages/testorig.ppm
DRC66129dc2014-05-06 08:58:11 +0000433 md5/md5cmp $(MD5_JPEG_420_IFAST_Q100_PROG) testout_420_q100_ifast_prog.jpg
434# CC: YCC->RGB SAMP: fullsize/h2v2 fancy IDCT: ifast ENT: prog huff
435 ./djpeg -dct fast -outfile testout_420_q100_ifast.ppm testout_420_q100_ifast_prog.jpg
436 md5/md5cmp $(MD5_PPM_420_Q100_IFAST) testout_420_q100_ifast.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200437 rm -f testout_420_q100_ifast.ppm
DRC66129dc2014-05-06 08:58:11 +0000438# CC: YCC->RGB SAMP: h2v2 merged IDCT: ifast ENT: prog huff
DRC78df2e62014-05-12 09:23:57 +0000439 ./djpeg -dct fast -nosmooth -outfile testout_420m_q100_ifast.ppm testout_420_q100_ifast_prog.jpg
DRC66129dc2014-05-06 08:58:11 +0000440 md5/md5cmp $(MD5_PPM_420M_Q100_IFAST) testout_420m_q100_ifast.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200441 rm -f testout_420m_q100_ifast.ppm testout_420_q100_ifast_prog.jpg
DRC66129dc2014-05-06 08:58:11 +0000442
443# CC: RGB->Gray SAMP: fullsize FDCT: islow ENT: huff
444 ./cjpeg -gray -dct int -outfile testout_gray_islow.jpg $(srcdir)/testimages/testorig.ppm
445 md5/md5cmp $(MD5_JPEG_GRAY_ISLOW) testout_gray_islow.jpg
DRC78df2e62014-05-12 09:23:57 +0000446# CC: Gray->Gray SAMP: fullsize IDCT: islow ENT: huff
DRC66129dc2014-05-06 08:58:11 +0000447 ./djpeg -dct int -outfile testout_gray_islow.ppm testout_gray_islow.jpg
448 md5/md5cmp $(MD5_PPM_GRAY_ISLOW) testout_gray_islow.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200449 rm -f testout_gray_islow.ppm
DRC78df2e62014-05-12 09:23:57 +0000450# CC: Gray->RGB SAMP: fullsize IDCT: islow ENT: huff
451 ./djpeg -dct int -rgb -outfile testout_gray_islow_rgb.ppm testout_gray_islow.jpg
452 md5/md5cmp $(MD5_PPM_GRAY_ISLOW_RGB) testout_gray_islow_rgb.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200453 rm -f testout_gray_islow_rgb.ppm
DRCaee4f722014-08-09 23:06:07 +0000454if WITH_12BIT
Alex Naidis6eb7d372016-10-16 23:10:08 +0200455 rm -f testout_gray_islow.jpg
DRCaee4f722014-08-09 23:06:07 +0000456else
DRC78df2e62014-05-12 09:23:57 +0000457# CC: Gray->RGB565 SAMP: fullsize IDCT: islow ENT: huff
458 ./djpeg -dct int -rgb565 -dither none -bmp -outfile testout_gray_islow_565.bmp testout_gray_islow.jpg
459 md5/md5cmp $(MD5_BMP_GRAY_ISLOW_565) testout_gray_islow_565.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200460 rm -f testout_gray_islow_565.bmp
DRC78df2e62014-05-12 09:23:57 +0000461# CC: Gray->RGB565 (dithered) SAMP: fullsize IDCT: islow ENT: huff
462 ./djpeg -dct int -rgb565 -bmp -outfile testout_gray_islow_565D.bmp testout_gray_islow.jpg
463 md5/md5cmp $(MD5_BMP_GRAY_ISLOW_565D) testout_gray_islow_565D.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200464 rm -f testout_gray_islow_565D.bmp testout_gray_islow.jpg
DRCaee4f722014-08-09 23:06:07 +0000465endif
DRC66129dc2014-05-06 08:58:11 +0000466
467# CC: RGB->YCC SAMP: fullsize smooth/h2v2 smooth FDCT: islow
468# ENT: 2-pass huff
469 ./cjpeg -sample 2x2 -smooth 1 -dct int -opt -outfile testout_420s_ifast_opt.jpg $(srcdir)/testimages/testorig.ppm
470 md5/md5cmp $(MD5_JPEG_420S_IFAST_OPT) testout_420s_ifast_opt.jpg
Alex Naidis6eb7d372016-10-16 23:10:08 +0200471 rm -f testout_420s_ifast_opt.jpg
DRC66129dc2014-05-06 08:58:11 +0000472
DRC3af282d2015-01-16 06:53:36 +0000473# The output of the floating point tests is not validated by default, because
474# the output differs depending on the type of floating point math used, and
DRCc60d6622015-01-16 07:16:53 +0000475# this is only deterministic if the DCT/IDCT are implemented using SIMD
476# instructions on a particular platform. Pass one of the following on the make
Alex Naidis6eb7d372016-10-16 23:10:08 +0200477# command line to validate the floating point tests against one of the expected
478# results:
DRC3af282d2015-01-16 06:53:36 +0000479#
480# FLOATTEST=sse validate against the expected results from the libjpeg-turbo
481# SSE SIMD extensions
DRCc60d6622015-01-16 07:16:53 +0000482# FLOATTEST=32bit validate against the expected results from the C code
483# when running on a 32-bit FPU (or when SSE is being used for
484# floating point math, which is generally the default with
485# x86-64 compilers)
486# FLOATTEST=64bit validate against the exepected results from the C code
487# when running on a 64-bit FPU
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500488# FLOATTEST=387 validate against the expected results from the C code when
489# the 387 FPU is being used for floating point math (which is
490# generally the default with x86 compilers)
DRC3af282d2015-01-16 06:53:36 +0000491
DRC66129dc2014-05-06 08:58:11 +0000492# CC: RGB->YCC SAMP: fullsize/int FDCT: float ENT: prog huff
493 ./cjpeg -sample 3x2 -dct float -prog -outfile testout_3x2_float_prog.jpg $(srcdir)/testimages/testorig.ppm
DRC3af282d2015-01-16 06:53:36 +0000494 if [ "${FLOATTEST}" = "sse" ]; then \
495 md5/md5cmp $(MD5_JPEG_3x2_FLOAT_PROG_SSE) testout_3x2_float_prog.jpg; \
496 elif [ "${FLOATTEST}" = "32bit" -o "${FLOATTEST}" = "64bit" ]; then \
497 md5/md5cmp $(MD5_JPEG_3x2_FLOAT_PROG_32BIT) testout_3x2_float_prog.jpg; \
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500498 elif [ "${FLOATTEST}" = "387" ]; then \
499 md5/md5cmp $(MD5_JPEG_3x2_FLOAT_PROG_387) testout_3x2_float_prog.jpg; \
DRC3af282d2015-01-16 06:53:36 +0000500 fi
DRC66129dc2014-05-06 08:58:11 +0000501# CC: YCC->RGB SAMP: fullsize/int IDCT: float ENT: prog huff
502 ./djpeg -dct float -outfile testout_3x2_float.ppm testout_3x2_float_prog.jpg
DRC3af282d2015-01-16 06:53:36 +0000503 if [ "${FLOATTEST}" = "sse" ]; then \
504 md5/md5cmp $(MD5_PPM_3x2_FLOAT_SSE) testout_3x2_float.ppm; \
505 elif [ "${FLOATTEST}" = "32bit" ]; then \
506 md5/md5cmp $(MD5_PPM_3x2_FLOAT_32BIT) testout_3x2_float.ppm; \
507 elif [ "${FLOATTEST}" = "64bit" ]; then \
508 md5/md5cmp $(MD5_PPM_3x2_FLOAT_64BIT) testout_3x2_float.ppm; \
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500509 elif [ "${FLOATTEST}" = "387" ]; then \
510 md5/md5cmp $(MD5_PPM_3x2_FLOAT_387) testout_3x2_float.ppm; \
DRC3af282d2015-01-16 06:53:36 +0000511 fi
Alex Naidis6eb7d372016-10-16 23:10:08 +0200512 rm -f testout_3x2_float.ppm testout_3x2_float_prog.jpg
DRC66129dc2014-05-06 08:58:11 +0000513
DRC3af282d2015-01-16 06:53:36 +0000514# CC: RGB->YCC SAMP: fullsize/int FDCT: ifast ENT: prog huff
515 ./cjpeg -sample 3x2 -dct fast -prog -outfile testout_3x2_ifast_prog.jpg $(srcdir)/testimages/testorig.ppm
516 md5/md5cmp $(MD5_JPEG_3x2_IFAST_PROG) testout_3x2_ifast_prog.jpg
517# CC: YCC->RGB SAMP: fullsize/int IDCT: ifast ENT: prog huff
518 ./djpeg -dct fast -outfile testout_3x2_ifast.ppm testout_3x2_ifast_prog.jpg
519 md5/md5cmp $(MD5_PPM_3x2_IFAST) testout_3x2_ifast.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200520 rm -f testout_3x2_ifast.ppm testout_3x2_ifast_prog.jpg
DRC3af282d2015-01-16 06:53:36 +0000521
DRCe3720042010-11-23 06:50:14 +0000522if WITH_ARITH_ENC
DRC66129dc2014-05-06 08:58:11 +0000523# CC: YCC->RGB SAMP: fullsize/h2v2 FDCT: islow ENT: arith
524 ./cjpeg -dct int -arithmetic -outfile testout_420_islow_ari.jpg $(srcdir)/testimages/testorig.ppm
525 md5/md5cmp $(MD5_JPEG_420_ISLOW_ARI) testout_420_islow_ari.jpg
Alex Naidis6eb7d372016-10-16 23:10:08 +0200526 rm -f testout_420_islow_ari.jpg
DRC66129dc2014-05-06 08:58:11 +0000527 ./jpegtran -arithmetic -outfile testout_420_islow_ari.jpg $(srcdir)/testimages/testimgint.jpg
528 md5/md5cmp $(MD5_JPEG_420_ISLOW_ARI) testout_420_islow_ari.jpg
Alex Naidis6eb7d372016-10-16 23:10:08 +0200529 rm -f testout_420_islow_ari.jpg
DRC66129dc2014-05-06 08:58:11 +0000530# CC: YCC->RGB SAMP: fullsize FDCT: islow ENT: prog arith
DRCe67a7e32015-06-27 08:10:31 +0000531 ./cjpeg -sample 1x1 -dct int -prog -arithmetic -outfile testout_444_islow_progari.jpg $(srcdir)/testimages/testorig.ppm
DRC66129dc2014-05-06 08:58:11 +0000532 md5/md5cmp $(MD5_JPEG_444_ISLOW_PROGARI) testout_444_islow_progari.jpg
Alex Naidis6eb7d372016-10-16 23:10:08 +0200533 rm -f testout_444_islow_progari.jpg
DRCe3720042010-11-23 06:50:14 +0000534endif
535if WITH_ARITH_DEC
DRC66129dc2014-05-06 08:58:11 +0000536# CC: RGB->YCC SAMP: h2v2 merged IDCT: ifast ENT: arith
537 ./djpeg -fast -ppm -outfile testout_420m_ifast_ari.ppm $(srcdir)/testimages/testimgari.jpg
538 md5/md5cmp $(MD5_PPM_420M_IFAST_ARI) testout_420m_ifast_ari.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200539 rm -f testout_420m_ifast_ari.ppm
DRC66129dc2014-05-06 08:58:11 +0000540 ./jpegtran -outfile testout_420_islow.jpg $(srcdir)/testimages/testimgari.jpg
541 md5/md5cmp $(MD5_JPEG_420_ISLOW) testout_420_islow.jpg
Alex Naidis6eb7d372016-10-16 23:10:08 +0200542 rm -f testout_420_islow.jpg
DRCe3720042010-11-23 06:50:14 +0000543endif
DRC66129dc2014-05-06 08:58:11 +0000544
545# CC: YCC->RGB SAMP: h2v2 merged IDCT: 16x16 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000546 ./djpeg -dct int -scale 2/1 -nosmooth -ppm -outfile testout_420m_islow_2_1.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000547 md5/md5cmp $(MD5_PPM_420M_ISLOW_2_1) testout_420m_islow_2_1.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200548 rm -f testout_420m_islow_2_1.ppm
DRC66129dc2014-05-06 08:58:11 +0000549# CC: YCC->RGB SAMP: h2v2 merged IDCT: 15x15 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000550 ./djpeg -dct int -scale 15/8 -nosmooth -ppm -outfile testout_420m_islow_15_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000551 md5/md5cmp $(MD5_PPM_420M_ISLOW_15_8) testout_420m_islow_15_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200552 rm -f testout_420m_islow_15_8.ppm
DRC66129dc2014-05-06 08:58:11 +0000553# CC: YCC->RGB SAMP: h2v2 merged IDCT: 13x13 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000554 ./djpeg -dct int -scale 13/8 -nosmooth -ppm -outfile testout_420m_islow_13_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000555 md5/md5cmp $(MD5_PPM_420M_ISLOW_13_8) testout_420m_islow_13_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200556 rm -f testout_420m_islow_13_8.ppm
DRC66129dc2014-05-06 08:58:11 +0000557# CC: YCC->RGB SAMP: h2v2 merged IDCT: 11x11 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000558 ./djpeg -dct int -scale 11/8 -nosmooth -ppm -outfile testout_420m_islow_11_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000559 md5/md5cmp $(MD5_PPM_420M_ISLOW_11_8) testout_420m_islow_11_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200560 rm -f testout_420m_islow_11_8.ppm
DRC66129dc2014-05-06 08:58:11 +0000561# CC: YCC->RGB SAMP: h2v2 merged IDCT: 9x9 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000562 ./djpeg -dct int -scale 9/8 -nosmooth -ppm -outfile testout_420m_islow_9_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000563 md5/md5cmp $(MD5_PPM_420M_ISLOW_9_8) testout_420m_islow_9_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200564 rm -f testout_420m_islow_9_8.ppm
DRC66129dc2014-05-06 08:58:11 +0000565# CC: YCC->RGB SAMP: h2v2 merged IDCT: 7x7 islow/14x14 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000566 ./djpeg -dct int -scale 7/8 -nosmooth -ppm -outfile testout_420m_islow_7_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000567 md5/md5cmp $(MD5_PPM_420M_ISLOW_7_8) testout_420m_islow_7_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200568 rm -f testout_420m_islow_7_8.ppm
DRC66129dc2014-05-06 08:58:11 +0000569# CC: YCC->RGB SAMP: h2v2 merged IDCT: 6x6 islow/12x12 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000570 ./djpeg -dct int -scale 3/4 -nosmooth -ppm -outfile testout_420m_islow_3_4.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000571 md5/md5cmp $(MD5_PPM_420M_ISLOW_3_4) testout_420m_islow_3_4.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200572 rm -f testout_420m_islow_3_4.ppm
DRC66129dc2014-05-06 08:58:11 +0000573# CC: YCC->RGB SAMP: h2v2 merged IDCT: 5x5 islow/10x10 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000574 ./djpeg -dct int -scale 5/8 -nosmooth -ppm -outfile testout_420m_islow_5_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000575 md5/md5cmp $(MD5_PPM_420M_ISLOW_5_8) testout_420m_islow_5_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200576 rm -f testout_420m_islow_5_8.ppm
DRC66129dc2014-05-06 08:58:11 +0000577# CC: YCC->RGB SAMP: h2v2 merged IDCT: 4x4 islow/8x8 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000578 ./djpeg -dct int -scale 1/2 -nosmooth -ppm -outfile testout_420m_islow_1_2.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000579 md5/md5cmp $(MD5_PPM_420M_ISLOW_1_2) testout_420m_islow_1_2.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200580 rm -f testout_420m_islow_1_2.ppm
DRC66129dc2014-05-06 08:58:11 +0000581# CC: YCC->RGB SAMP: h2v2 merged IDCT: 3x3 islow/6x6 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000582 ./djpeg -dct int -scale 3/8 -nosmooth -ppm -outfile testout_420m_islow_3_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000583 md5/md5cmp $(MD5_PPM_420M_ISLOW_3_8) testout_420m_islow_3_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200584 rm -f testout_420m_islow_3_8.ppm
DRC66129dc2014-05-06 08:58:11 +0000585# CC: YCC->RGB SAMP: h2v2 merged IDCT: 2x2 islow/4x4 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000586 ./djpeg -dct int -scale 1/4 -nosmooth -ppm -outfile testout_420m_islow_1_4.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000587 md5/md5cmp $(MD5_PPM_420M_ISLOW_1_4) testout_420m_islow_1_4.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200588 rm -f testout_420m_islow_1_4.ppm
DRC66129dc2014-05-06 08:58:11 +0000589# CC: YCC->RGB SAMP: h2v2 merged IDCT: 1x1 islow/2x2 islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000590 ./djpeg -dct int -scale 1/8 -nosmooth -ppm -outfile testout_420m_islow_1_8.ppm $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000591 md5/md5cmp $(MD5_PPM_420M_ISLOW_1_8) testout_420m_islow_1_8.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200592 rm -f testout_420m_islow_1_8.ppm
DRCaee4f722014-08-09 23:06:07 +0000593if WITH_12BIT
594else
DRC66129dc2014-05-06 08:58:11 +0000595# CC: YCC->RGB (dithered) SAMP: h2v2 fancy IDCT: islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000596 ./djpeg -dct int -colors 256 -bmp -outfile testout_420_islow_256.bmp $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000597 md5/md5cmp $(MD5_BMP_420_ISLOW_256) testout_420_islow_256.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200598 rm -f testout_420_islow_256.bmp
DRC78df2e62014-05-12 09:23:57 +0000599# CC: YCC->RGB565 SAMP: h2v2 fancy IDCT: islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000600 ./djpeg -dct int -rgb565 -dither none -bmp -outfile testout_420_islow_565.bmp $(srcdir)/testimages/$(TESTORIG)
DRC78df2e62014-05-12 09:23:57 +0000601 md5/md5cmp $(MD5_BMP_420_ISLOW_565) testout_420_islow_565.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200602 rm -f testout_420_islow_565.bmp
DRC78df2e62014-05-12 09:23:57 +0000603# CC: YCC->RGB565 (dithered) SAMP: h2v2 fancy IDCT: islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000604 ./djpeg -dct int -rgb565 -bmp -outfile testout_420_islow_565D.bmp $(srcdir)/testimages/$(TESTORIG)
DRC78df2e62014-05-12 09:23:57 +0000605 md5/md5cmp $(MD5_BMP_420_ISLOW_565D) testout_420_islow_565D.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200606 rm -f testout_420_islow_565D.bmp
DRC78df2e62014-05-12 09:23:57 +0000607# CC: YCC->RGB565 SAMP: h2v2 merged IDCT: islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000608 ./djpeg -dct int -nosmooth -rgb565 -dither none -bmp -outfile testout_420m_islow_565.bmp $(srcdir)/testimages/$(TESTORIG)
DRC78df2e62014-05-12 09:23:57 +0000609 md5/md5cmp $(MD5_BMP_420M_ISLOW_565) testout_420m_islow_565.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200610 rm -f testout_420m_islow_565.bmp
DRC78df2e62014-05-12 09:23:57 +0000611# CC: YCC->RGB565 (dithered) SAMP: h2v2 merged IDCT: islow ENT: huff
DRCaee4f722014-08-09 23:06:07 +0000612 ./djpeg -dct int -nosmooth -rgb565 -bmp -outfile testout_420m_islow_565D.bmp $(srcdir)/testimages/$(TESTORIG)
DRC78df2e62014-05-12 09:23:57 +0000613 md5/md5cmp $(MD5_BMP_420M_ISLOW_565D) testout_420m_islow_565D.bmp
Alex Naidis6eb7d372016-10-16 23:10:08 +0200614 rm -f testout_420m_islow_565D.bmp
DRCaee4f722014-08-09 23:06:07 +0000615endif
DRC66129dc2014-05-06 08:58:11 +0000616
DRCe67a7e32015-06-27 08:10:31 +0000617# Partial decode tests. These tests are designed to cover all of the possible
618# code paths in jpeg_skip_scanlines().
619
620# Context rows: Yes Intra-iMCU row: Yes iMCU row prefetch: No ENT: huff
621 ./djpeg -dct int -skip 15,31 -ppm -outfile testout_420_islow_skip15,31.ppm $(srcdir)/testimages/$(TESTORIG)
622 md5/md5cmp $(MD5_PPM_420_ISLOW_SKIP15_31) testout_420_islow_skip15,31.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200623 rm -f testout_420_islow_skip15,31.ppm
DRCe67a7e32015-06-27 08:10:31 +0000624# Context rows: Yes Intra-iMCU row: No iMCU row prefetch: Yes ENT: arith
625if WITH_ARITH_DEC
626 ./djpeg -dct int -skip 16,139 -ppm -outfile testout_420_islow_ari_skip16,139.ppm $(srcdir)/testimages/testimgari.jpg
627 md5/md5cmp $(MD5_PPM_420_ISLOW_ARI_SKIP16_139) testout_420_islow_ari_skip16,139.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200628 rm -f testout_420_islow_ari_skip16,139.ppm
DRCe67a7e32015-06-27 08:10:31 +0000629endif
630# Context rows: Yes Intra-iMCU row: No iMCU row prefetch: No ENT: prog huff
631 ./cjpeg -dct int -prog -outfile testout_420_islow_prog.jpg $(srcdir)/testimages/testorig.ppm
DRC0ef076f2016-02-19 18:32:10 -0600632 ./djpeg -dct int -crop 62x62+71+71 -ppm -outfile testout_420_islow_prog_crop62x62,71,71.ppm testout_420_islow_prog.jpg
633 md5/md5cmp $(MD5_PPM_420_ISLOW_PROG_CROP62x62_71_71) testout_420_islow_prog_crop62x62,71,71.ppm
634 rm -f testout_420_islow_prog_crop62x62,71,71.ppm testout_420_islow_prog.jpg
DRCe67a7e32015-06-27 08:10:31 +0000635# Context rows: Yes Intra-iMCU row: No iMCU row prefetch: No ENT: arith
636if WITH_ARITH_DEC
DRC0ef076f2016-02-19 18:32:10 -0600637 ./djpeg -dct int -crop 53x53+4+4 -ppm -outfile testout_420_islow_ari_crop53x53,4,4.ppm $(srcdir)/testimages/testimgari.jpg
638 md5/md5cmp $(MD5_PPM_420_ISLOW_ARI_CROP53x53_4_4) testout_420_islow_ari_crop53x53,4,4.ppm
639 rm -f testout_420_islow_ari_crop53x53,4,4.ppm
DRCe67a7e32015-06-27 08:10:31 +0000640endif
641# Context rows: No Intra-iMCU row: Yes ENT: huff
642 ./cjpeg -dct int -sample 1x1 -outfile testout_444_islow.jpg $(srcdir)/testimages/testorig.ppm
643 ./djpeg -dct int -skip 1,6 -ppm -outfile testout_444_islow_skip1,6.ppm testout_444_islow.jpg
644 md5/md5cmp $(MD5_PPM_444_ISLOW_SKIP1_6) testout_444_islow_skip1,6.ppm
Alex Naidis6eb7d372016-10-16 23:10:08 +0200645 rm -f testout_444_islow_skip1,6.ppm testout_444_islow.jpg
DRCe67a7e32015-06-27 08:10:31 +0000646# Context rows: No Intra-iMCU row: No ENT: prog huff
647 ./cjpeg -dct int -prog -sample 1x1 -outfile testout_444_islow_prog.jpg $(srcdir)/testimages/testorig.ppm
DRC0ef076f2016-02-19 18:32:10 -0600648 ./djpeg -dct int -crop 98x98+13+13 -ppm -outfile testout_444_islow_prog_crop98x98,13,13.ppm testout_444_islow_prog.jpg
649 md5/md5cmp $(MD5_PPM_444_ISLOW_PROG_CROP98x98_13_13) testout_444_islow_prog_crop98x98,13,13.ppm
650 rm -f testout_444_islow_prog_crop98x98,13,13.ppm testout_444_islow_prog.jpg
DRCe67a7e32015-06-27 08:10:31 +0000651# Context rows: No Intra-iMCU row: No ENT: arith
652if WITH_ARITH_ENC
653 ./cjpeg -dct int -arithmetic -sample 1x1 -outfile testout_444_islow_ari.jpg $(srcdir)/testimages/testorig.ppm
654if WITH_ARITH_DEC
DRC0ef076f2016-02-19 18:32:10 -0600655 ./djpeg -dct int -crop 37x37+0+0 -ppm -outfile testout_444_islow_ari_crop37x37,0,0.ppm testout_444_islow_ari.jpg
656 md5/md5cmp $(MD5_PPM_444_ISLOW_ARI_CROP37x37_0_0) testout_444_islow_ari_crop37x37,0,0.ppm
657 rm -f testout_444_islow_ari_crop37x37,0,0.ppm
DRCe67a7e32015-06-27 08:10:31 +0000658endif
Alex Naidis6eb7d372016-10-16 23:10:08 +0200659 rm -f testout_444_islow_ari.jpg
DRCe67a7e32015-06-27 08:10:31 +0000660endif
661
DRCaee4f722014-08-09 23:06:07 +0000662 ./jpegtran -crop 120x90+20+50 -transpose -perfect -outfile testout_crop.jpg $(srcdir)/testimages/$(TESTORIG)
DRC66129dc2014-05-06 08:58:11 +0000663 md5/md5cmp $(MD5_JPEG_CROP) testout_crop.jpg
Alex Naidis6eb7d372016-10-16 23:10:08 +0200664 rm -f testout_crop.jpg
DRCdd7f03b2015-01-16 06:45:54 +0000665 echo GREAT SUCCESS!
DRC83f21442010-06-10 18:52:41 +0000666
DRC83f21442010-06-10 18:52:41 +0000667
DRC34d59e72010-02-12 06:27:34 +0000668testclean:
DRC7b991722010-06-10 19:44:56 +0000669 rm -f testout*
DRCf2602ce2011-04-01 00:20:33 +0000670 rm -f *_GRAY_*.bmp
671 rm -f *_GRAY_*.png
672 rm -f *_GRAY_*.ppm
673 rm -f *_GRAY_*.jpg
DRCba6f4572011-03-31 09:41:53 +0000674 rm -f *_GRAY.yuv
DRCf2602ce2011-04-01 00:20:33 +0000675 rm -f *_420_*.bmp
676 rm -f *_420_*.png
677 rm -f *_420_*.ppm
678 rm -f *_420_*.jpg
DRCba6f4572011-03-31 09:41:53 +0000679 rm -f *_420.yuv
DRCf2602ce2011-04-01 00:20:33 +0000680 rm -f *_422_*.bmp
681 rm -f *_422_*.png
682 rm -f *_422_*.ppm
683 rm -f *_422_*.jpg
DRCba6f4572011-03-31 09:41:53 +0000684 rm -f *_422.yuv
DRCf2602ce2011-04-01 00:20:33 +0000685 rm -f *_444_*.bmp
686 rm -f *_444_*.png
687 rm -f *_444_*.ppm
688 rm -f *_444_*.jpg
DRCba6f4572011-03-31 09:41:53 +0000689 rm -f *_444.yuv
DRCf2602ce2011-04-01 00:20:33 +0000690 rm -f *_440_*.bmp
691 rm -f *_440_*.png
692 rm -f *_440_*.ppm
693 rm -f *_440_*.jpg
DRCba6f4572011-03-31 09:41:53 +0000694 rm -f *_440.yuv
DRC1f3635c2013-08-18 10:19:00 +0000695 rm -f *_411_*.bmp
696 rm -f *_411_*.png
697 rm -f *_411_*.ppm
698 rm -f *_411_*.jpg
699 rm -f *_411.yuv
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500700 rm -f tjbenchtest*.log
701 rm -f tjexampletest*.log
DRC079b4342010-02-15 11:32:23 +0000702
DRCcb6157b2012-01-31 11:38:13 +0000703
704tjtest:
705 sh ./tjbenchtest
DRC684ace12014-08-22 03:04:06 +0000706 sh ./tjbenchtest -alloc
DRC823fbed2014-03-13 20:48:38 +0000707 sh ./tjbenchtest -yuv
DRC684ace12014-08-22 03:04:06 +0000708 sh ./tjbenchtest -yuv -alloc
DRCcb6157b2012-01-31 11:38:13 +0000709if WITH_JAVA
DRCfac3bea2012-09-24 02:27:55 +0000710 sh ./tjbenchtest.java
DRC7a6ed072014-03-17 11:14:52 +0000711 sh ./tjbenchtest.java -yuv
DRCcb6157b2012-01-31 11:38:13 +0000712endif
713
714
DRC764e1e22013-04-19 04:25:14 +0000715pkgscripts/libjpeg-turbo.spec: pkgscripts/libjpeg-turbo.spec.tmpl
716 cat pkgscripts/libjpeg-turbo.spec.tmpl | sed s@%{__prefix}@$(prefix)@g | \
717 sed s@%{__bindir}@$(bindir)@g | sed s@%{__datadir}@$(datadir)@g | \
718 sed s@%{__docdir}@$(docdir)@g | sed s@%{__includedir}@$(includedir)@g | \
719 sed s@%{__libdir}@$(libdir)@g | sed s@%{__mandir}@$(mandir)@g \
720 > pkgscripts/libjpeg-turbo.spec
DRCd1c281a2010-11-17 22:44:40 +0000721
DRC764e1e22013-04-19 04:25:14 +0000722rpm: all pkgscripts/libjpeg-turbo.spec
DRC1f80a102010-10-18 00:15:31 +0000723 TMPDIR=`mktemp -d /tmp/${PACKAGE_NAME}-build.XXXXXX`; \
724 mkdir -p $$TMPDIR/RPMS; \
725 ln -fs `pwd` $$TMPDIR/BUILD; \
DRC764e1e22013-04-19 04:25:14 +0000726 rm -f ${PKGNAME}-${VERSION}.${RPMARCH}.rpm; \
DRC1f80a102010-10-18 00:15:31 +0000727 rpmbuild -bb --define "_blddir $$TMPDIR/buildroot" \
DRC57bd84f2012-02-10 01:40:29 +0000728 --define "_topdir $$TMPDIR" \
DRCb94f2de2011-03-22 09:31:25 +0000729 --target ${RPMARCH} pkgscripts/libjpeg-turbo.spec; \
DRC764e1e22013-04-19 04:25:14 +0000730 cp $$TMPDIR/RPMS/${RPMARCH}/${PKGNAME}-${VERSION}-${BUILD}.${RPMARCH}.rpm \
731 ${PKGNAME}-${VERSION}.${RPMARCH}.rpm; \
DRC1f80a102010-10-18 00:15:31 +0000732 rm -rf $$TMPDIR
DRC079b4342010-02-15 11:32:23 +0000733
DRC764e1e22013-04-19 04:25:14 +0000734srpm: dist-gzip pkgscripts/libjpeg-turbo.spec
DRC1f80a102010-10-18 00:15:31 +0000735 TMPDIR=`mktemp -d /tmp/${PACKAGE_NAME}-build.XXXXXX`; \
736 mkdir -p $$TMPDIR/RPMS; \
737 mkdir -p $$TMPDIR/SRPMS; \
738 mkdir -p $$TMPDIR/BUILD; \
739 mkdir -p $$TMPDIR/SOURCES; \
740 mkdir -p $$TMPDIR/SPECS; \
DRC764e1e22013-04-19 04:25:14 +0000741 rm -f ${PKGNAME}-${VERSION}.src.rpm; \
DRC1f80a102010-10-18 00:15:31 +0000742 cp ${PACKAGE_NAME}-${VERSION}.tar.gz $$TMPDIR/SOURCES; \
DRCb94f2de2011-03-22 09:31:25 +0000743 cat pkgscripts/libjpeg-turbo.spec | sed s/%{_blddir}/%{_tmppath}/g \
DRC57bd84f2012-02-10 01:40:29 +0000744 | sed s/#--\>//g \
DRCb94f2de2011-03-22 09:31:25 +0000745 > $$TMPDIR/SPECS/libjpeg-turbo.spec; \
DRC1f80a102010-10-18 00:15:31 +0000746 rpmbuild -bs --define "_topdir $$TMPDIR" $$TMPDIR/SPECS/libjpeg-turbo.spec; \
DRC764e1e22013-04-19 04:25:14 +0000747 cp $$TMPDIR/SRPMS/${PKGNAME}-${VERSION}-${BUILD}.src.rpm \
748 ${PKGNAME}-${VERSION}.src.rpm; \
DRC1f80a102010-10-18 00:15:31 +0000749 rm -rf $$TMPDIR
DRC52a19f22010-02-15 12:06:27 +0000750
DRC764e1e22013-04-19 04:25:14 +0000751pkgscripts/makedpkg: pkgscripts/makedpkg.tmpl
752 cat pkgscripts/makedpkg.tmpl | sed s@%{__prefix}@$(prefix)@g | \
DRC7175e512013-04-23 22:29:00 +0000753 sed s@%{__docdir}@$(docdir)@g | sed s@%{__libdir}@$(libdir)@g \
DRC764e1e22013-04-19 04:25:14 +0000754 > pkgscripts/makedpkg
755
756deb: all pkgscripts/makedpkg
DRCb94f2de2011-03-22 09:31:25 +0000757 sh pkgscripts/makedpkg
DRC6533b6e2010-02-15 14:57:18 +0000758
DRC7175e512013-04-23 22:29:00 +0000759pkgscripts/uninstall: pkgscripts/uninstall.tmpl
760 cat pkgscripts/uninstall.tmpl | sed s@%{__prefix}@$(prefix)@g | \
761 sed s@%{__bindir}@$(bindir)@g | sed s@%{__datadir}@$(datadir)@g | \
762 sed s@%{__includedir}@$(includedir)@g | sed s@%{__libdir}@$(libdir)@g | \
763 sed s@%{__mandir}@$(mandir)@g > pkgscripts/uninstall
764
765pkgscripts/makemacpkg: pkgscripts/makemacpkg.tmpl
766 cat pkgscripts/makemacpkg.tmpl | sed s@%{__prefix}@$(prefix)@g | \
767 sed s@%{__bindir}@$(bindir)@g | sed s@%{__docdir}@$(docdir)@g | \
768 sed s@%{__libdir}@$(libdir)@g > pkgscripts/makemacpkg
769
DRC315123f2010-02-15 16:14:26 +0000770if X86_64
771
DRC7175e512013-04-23 22:29:00 +0000772udmg: all pkgscripts/makemacpkg pkgscripts/uninstall
DRC7c6ae032012-03-23 00:51:56 +0000773 sh pkgscripts/makemacpkg -build32 ${BUILDDIR32}
DRC315123f2010-02-15 16:14:26 +0000774
DRC7175e512013-04-23 22:29:00 +0000775iosdmg: all pkgscripts/makemacpkg pkgscripts/uninstall
Alex Naidis6eb7d372016-10-16 23:10:08 +0200776 sh pkgscripts/makemacpkg -build32 ${BUILDDIR32} -buildarmv7 ${BUILDDIRARMV7} -buildarmv7s ${BUILDDIRARMV7S} -buildarmv8 ${BUILDDIRARMV8} -lipo "${LIPO}"
DRC166c5ec2012-02-10 01:07:59 +0000777
778else
779
DRC7175e512013-04-23 22:29:00 +0000780iosdmg: all pkgscripts/makemacpkg pkgscripts/uninstall
Alex Naidis6eb7d372016-10-16 23:10:08 +0200781 sh pkgscripts/makemacpkg -buildarmv7 ${BUILDDIRARMV7} -buildarmv7s ${BUILDDIRARMV7S} -buildarmv8 ${BUILDDIRARMV8} -lipo "${LIPO}"
DRC1fbae842012-02-09 09:23:30 +0000782
DRC315123f2010-02-15 16:14:26 +0000783endif
784
DRC7175e512013-04-23 22:29:00 +0000785dmg: all pkgscripts/makemacpkg pkgscripts/uninstall
DRCb94f2de2011-03-22 09:31:25 +0000786 sh pkgscripts/makemacpkg
DRCb9b1ca32010-02-17 02:24:02 +0000787
DRC7175e512013-04-23 22:29:00 +0000788pkgscripts/makecygwinpkg: pkgscripts/makecygwinpkg.tmpl
789 cat pkgscripts/makecygwinpkg.tmpl | sed s@%{__prefix}@$(prefix)@g | \
790 sed s@%{__docdir}@$(docdir)@g | sed s@%{__libdir}@$(libdir)@g \
791 > pkgscripts/makecygwinpkg
792
DRC764e1e22013-04-19 04:25:14 +0000793cygwinpkg: all pkgscripts/makecygwinpkg
DRCb94f2de2011-03-22 09:31:25 +0000794 sh pkgscripts/makecygwinpkg