John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | ## |
John Koleszar | c2140b8 | 2010-09-09 08:16:39 -0400 | [diff] [blame] | 2 | ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | ## |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 4 | ## Use of this source code is governed by a BSD-style license |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 5 | ## that can be found in the LICENSE file in the root of the source |
| 6 | ## tree. An additional intellectual property rights grant can be found |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 7 | ## in the file PATENTS. All contributing project authors may |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 8 | ## be found in the AUTHORS file in the root of the source tree. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 9 | ## |
| 10 | |
John Koleszar | 7dfec96 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 11 | LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \ |
| 12 | third_party/libyuv/include/libyuv/cpu_id.h \ |
| 13 | third_party/libyuv/include/libyuv/scale.h \ |
| 14 | third_party/libyuv/source/row.h \ |
| 15 | third_party/libyuv/source/scale.c \ |
| 16 | third_party/libyuv/source/cpu_id.c |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 17 | |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 18 | LIBWEBM_MUXER_SRCS += third_party/libwebm/mkvmuxer.cpp \ |
| 19 | third_party/libwebm/mkvmuxerutil.cpp \ |
| 20 | third_party/libwebm/mkvwriter.cpp \ |
| 21 | third_party/libwebm/mkvmuxer.hpp \ |
| 22 | third_party/libwebm/mkvmuxertypes.hpp \ |
| 23 | third_party/libwebm/mkvmuxerutil.hpp \ |
| 24 | third_party/libwebm/mkvparser.hpp \ |
| 25 | third_party/libwebm/mkvwriter.hpp \ |
| 26 | third_party/libwebm/webmids.hpp |
| 27 | |
Vignesh Venkatasubramanian | dbd2471 | 2014-04-03 00:41:14 -0700 | [diff] [blame] | 28 | LIBWEBM_PARSER_SRCS = third_party/libwebm/mkvparser.cpp \ |
| 29 | third_party/libwebm/mkvreader.cpp \ |
| 30 | third_party/libwebm/mkvparser.hpp \ |
| 31 | third_party/libwebm/mkvreader.hpp |
| 32 | |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 33 | # List of examples to build. UTILS are tools meant for distribution |
| 34 | # while EXAMPLES demonstrate specific portions of the API. |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 35 | UTILS-$(CONFIG_DECODERS) += vpxdec.c |
| 36 | vpxdec.SRCS += md5_utils.c md5_utils.h |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 37 | vpxdec.SRCS += vpx_ports/mem_ops.h |
| 38 | vpxdec.SRCS += vpx_ports/mem_ops_aligned.h |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 39 | vpxdec.SRCS += vpx_ports/vpx_timer.h |
| 40 | vpxdec.SRCS += vpx/vpx_integer.h |
Attila Nagy | 1a7d25a | 2011-09-15 15:34:12 +0300 | [diff] [blame] | 41 | vpxdec.SRCS += args.c args.h |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 42 | vpxdec.SRCS += ivfdec.c ivfdec.h |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 43 | vpxdec.SRCS += tools_common.c tools_common.h |
Dmitry Kovalev | 5ab63583 | 2014-01-17 17:02:37 -0800 | [diff] [blame] | 44 | vpxdec.SRCS += y4menc.c y4menc.h |
John Koleszar | 7d8fc26 | 2013-02-25 16:58:47 -0800 | [diff] [blame] | 45 | vpxdec.SRCS += $(LIBYUV_SRCS) |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 46 | ifeq ($(CONFIG_WEBM_IO),yes) |
Vignesh Venkatasubramanian | dbd2471 | 2014-04-03 00:41:14 -0700 | [diff] [blame] | 47 | vpxdec.SRCS += $(LIBWEBM_PARSER_SRCS) |
| 48 | vpxdec.SRCS += webmdec.cc webmdec.h |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 49 | endif |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 50 | vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950 |
| 51 | vpxdec.DESCRIPTION = Full featured decoder |
| 52 | UTILS-$(CONFIG_ENCODERS) += vpxenc.c |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 53 | vpxenc.SRCS += args.c args.h y4minput.c y4minput.h vpxenc.h |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 54 | vpxenc.SRCS += ivfdec.c ivfdec.h |
| 55 | vpxenc.SRCS += ivfenc.c ivfenc.h |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 56 | vpxenc.SRCS += rate_hist.c rate_hist.h |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 57 | vpxenc.SRCS += tools_common.c tools_common.h |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 58 | vpxenc.SRCS += warnings.c warnings.h |
Attila Nagy | 1a7d25a | 2011-09-15 15:34:12 +0300 | [diff] [blame] | 59 | vpxenc.SRCS += vpx_ports/mem_ops.h |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 60 | vpxenc.SRCS += vpx_ports/mem_ops_aligned.h |
Johann | c459d37 | 2012-04-02 15:08:18 -0700 | [diff] [blame] | 61 | vpxenc.SRCS += vpx_ports/vpx_timer.h |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 62 | vpxenc.SRCS += vpxstats.c vpxstats.h |
John Koleszar | 7dfec96 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 63 | vpxenc.SRCS += $(LIBYUV_SRCS) |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 64 | ifeq ($(CONFIG_WEBM_IO),yes) |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 65 | vpxenc.SRCS += $(LIBWEBM_MUXER_SRCS) |
| 66 | vpxenc.SRCS += webmenc.cc webmenc.h |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 67 | endif |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 68 | vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1 |
| 69 | vpxenc.DESCRIPTION = Full featured encoder |
James Zern | 20eb5cb | 2014-02-21 17:57:27 -0800 | [diff] [blame] | 70 | EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_spatial_scalable_encoder.c |
Ivan Maltz | 1ed0e1b | 2013-10-23 11:53:37 -0700 | [diff] [blame] | 71 | vp9_spatial_scalable_encoder.SRCS += args.c args.h |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 72 | vp9_spatial_scalable_encoder.SRCS += ivfenc.c ivfenc.h |
| 73 | vp9_spatial_scalable_encoder.SRCS += tools_common.c tools_common.h |
Dmitry Kovalev | 14db3bf | 2014-02-12 11:23:49 -0800 | [diff] [blame] | 74 | vp9_spatial_scalable_encoder.SRCS += video_common.h |
| 75 | vp9_spatial_scalable_encoder.SRCS += video_writer.h video_writer.c |
Minghai Shang | b0c146e | 2014-02-28 14:22:57 -0800 | [diff] [blame] | 76 | vp9_spatial_scalable_encoder.SRCS += vpxstats.c vpxstats.h |
James Zern | a0fcbcf | 2013-09-17 18:47:25 -0700 | [diff] [blame] | 77 | vp9_spatial_scalable_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D |
| 78 | vp9_spatial_scalable_encoder.DESCRIPTION = Spatial Scalable Encoder |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 79 | |
Deb Mukherjee | 4298be3 | 2014-04-03 14:06:20 -0700 | [diff] [blame] | 80 | ifneq ($(CONFIG_SHARED),yes) |
James Zern | 98e16b1 | 2014-03-03 18:03:23 -0800 | [diff] [blame] | 81 | EXAMPLES-$(CONFIG_VP9_ENCODER) += resize_util.c |
Deb Mukherjee | cacea00 | 2014-01-23 14:53:53 -0800 | [diff] [blame] | 82 | endif |
| 83 | |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 84 | # XMA example disabled for now, not used in VP8 |
| 85 | #UTILS-$(CONFIG_DECODERS) += example_xma.c |
| 86 | #example_xma.GUID = A955FC4A-73F1-44F7-135E-30D84D32F022 |
| 87 | #example_xma.DESCRIPTION = External Memory Allocation mode usage |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 88 | |
Marco Paniconi | 4864ab2 | 2014-02-06 09:23:17 -0800 | [diff] [blame] | 89 | EXAMPLES-$(CONFIG_ENCODERS) += vpx_temporal_scalable_patterns.c |
| 90 | vpx_temporal_scalable_patterns.SRCS += ivfenc.c ivfenc.h |
| 91 | vpx_temporal_scalable_patterns.SRCS += tools_common.c tools_common.h |
Dmitry Kovalev | 4f8a30b | 2014-02-06 14:20:58 -0800 | [diff] [blame] | 92 | vpx_temporal_scalable_patterns.SRCS += video_common.h |
| 93 | vpx_temporal_scalable_patterns.SRCS += video_writer.h video_writer.c |
Marco Paniconi | 4864ab2 | 2014-02-06 09:23:17 -0800 | [diff] [blame] | 94 | vpx_temporal_scalable_patterns.GUID = B18C08F2-A439-4502-A78E-849BE3D60947 |
| 95 | vpx_temporal_scalable_patterns.DESCRIPTION = Temporal Scalability Encoder |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 96 | EXAMPLES-$(CONFIG_VP8_DECODER) += simple_decoder.c |
| 97 | simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC |
Dmitry Kovalev | 7ec2769 | 2014-01-27 13:40:29 -0800 | [diff] [blame] | 98 | simple_decoder.SRCS += ivfdec.h ivfdec.c |
| 99 | simple_decoder.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 100 | simple_decoder.SRCS += video_common.h |
| 101 | simple_decoder.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 102 | simple_decoder.SRCS += vpx_ports/mem_ops.h |
| 103 | simple_decoder.SRCS += vpx_ports/mem_ops_aligned.h |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 104 | simple_decoder.DESCRIPTION = Simplified decoder loop |
| 105 | EXAMPLES-$(CONFIG_VP8_DECODER) += postproc.c |
Dmitry Kovalev | 2e862ce | 2014-01-28 11:27:30 -0800 | [diff] [blame] | 106 | postproc.SRCS += ivfdec.h ivfdec.c |
| 107 | postproc.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 108 | postproc.SRCS += video_common.h |
| 109 | postproc.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 110 | postproc.SRCS += vpx_ports/mem_ops.h |
| 111 | postproc.SRCS += vpx_ports/mem_ops_aligned.h |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 112 | postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7 |
| 113 | postproc.DESCRIPTION = Decoder postprocessor control |
| 114 | EXAMPLES-$(CONFIG_VP8_DECODER) += decode_to_md5.c |
Dmitry Kovalev | c2b3368 | 2014-01-24 11:20:09 -0800 | [diff] [blame] | 115 | decode_to_md5.SRCS += md5_utils.h md5_utils.c |
| 116 | decode_to_md5.SRCS += ivfdec.h ivfdec.c |
| 117 | decode_to_md5.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 118 | decode_to_md5.SRCS += video_common.h |
| 119 | decode_to_md5.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 120 | decode_to_md5.SRCS += vpx_ports/mem_ops.h |
| 121 | decode_to_md5.SRCS += vpx_ports/mem_ops_aligned.h |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 122 | decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42 |
| 123 | decode_to_md5.DESCRIPTION = Frame by frame MD5 checksum |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 124 | EXAMPLES-$(CONFIG_VP8_ENCODER) += simple_encoder.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 125 | simple_encoder.SRCS += ivfenc.h ivfenc.c |
| 126 | simple_encoder.SRCS += tools_common.h tools_common.c |
| 127 | simple_encoder.SRCS += video_common.h |
| 128 | simple_encoder.SRCS += video_writer.h video_writer.c |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 129 | simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD |
| 130 | simple_encoder.DESCRIPTION = Simplified encoder loop |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 131 | EXAMPLES-$(CONFIG_VP8_ENCODER) += twopass_encoder.c |
Dmitry Kovalev | 592936b | 2014-02-07 11:37:39 -0800 | [diff] [blame] | 132 | twopass_encoder.SRCS += ivfenc.h ivfenc.c |
| 133 | twopass_encoder.SRCS += tools_common.h tools_common.c |
| 134 | twopass_encoder.SRCS += video_common.h |
| 135 | twopass_encoder.SRCS += video_writer.h video_writer.c |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 136 | twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD8 |
| 137 | twopass_encoder.DESCRIPTION = Two-pass encoder loop |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 138 | ifeq ($(CONFIG_DECODERS),yes) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 139 | EXAMPLES-$(CONFIG_VP8_ENCODER) += decode_with_drops.c |
| 140 | decode_with_drops.SRCS += ivfdec.h ivfdec.c |
| 141 | decode_with_drops.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 142 | decode_with_drops.SRCS += video_common.h |
| 143 | decode_with_drops.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 144 | decode_with_drops.SRCS += vpx_ports/mem_ops.h |
| 145 | decode_with_drops.SRCS += vpx_ports/mem_ops_aligned.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 146 | endif |
| 147 | decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26 |
| 148 | decode_with_drops.DESCRIPTION = Drops frames while decoding |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 149 | ifeq ($(CONFIG_VP8_DECODER),yes) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 150 | EXAMPLES-$(CONFIG_ERROR_CONCEALMENT) += decode_with_partial_drops.c |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 151 | endif |
| 152 | decode_with_partial_drops.GUID = 61C2D026-5754-46AC-916F-1343ECC5537E |
| 153 | decode_with_partial_drops.DESCRIPTION = Drops parts of frames while decoding |
Alex Converse | 61ecd7f | 2014-03-10 16:13:49 -0700 | [diff] [blame] | 154 | EXAMPLES-$(CONFIG_ENCODERS) += set_maps.c |
| 155 | set_maps.SRCS += ivfenc.h ivfenc.c |
| 156 | set_maps.SRCS += tools_common.h tools_common.c |
| 157 | set_maps.SRCS += video_common.h |
| 158 | set_maps.SRCS += video_writer.h video_writer.c |
| 159 | set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F |
| 160 | set_maps.DESCRIPTION = Set active and ROI maps |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 161 | EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c |
Dmitry Kovalev | cb4eb79 | 2014-03-03 17:41:51 -0800 | [diff] [blame] | 162 | vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c |
| 163 | vp8cx_set_ref.SRCS += tools_common.h tools_common.c |
| 164 | vp8cx_set_ref.SRCS += video_common.h |
| 165 | vp8cx_set_ref.SRCS += video_writer.h video_writer.c |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 166 | vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A |
| 167 | vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame |
| 168 | |
Dmitry Kovalev | 98254a4 | 2014-01-17 16:56:04 -0800 | [diff] [blame] | 169 | |
| 170 | ifeq ($(CONFIG_MULTI_RES_ENCODING),yes) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 171 | EXAMPLES-$(CONFIG_VP8_DECODER) += vp8_multi_resolution_encoder.c |
Dmitry Kovalev | 98254a4 | 2014-01-17 16:56:04 -0800 | [diff] [blame] | 172 | vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS) |
| 173 | vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de |
| 174 | vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding |
| 175 | endif |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 176 | |
| 177 | # Handle extra library flags depending on codec configuration |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 178 | |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 179 | # We should not link to math library (libm) on RVCT |
| 180 | # when building for bare-metal targets |
| 181 | ifeq ($(CONFIG_OS_SUPPORT), yes) |
| 182 | CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 183 | CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 184 | else |
| 185 | ifeq ($(CONFIG_GCC), yes) |
| 186 | CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 187 | CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 188 | endif |
| 189 | endif |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 190 | # |
| 191 | # End of specified files. The rest of the build rules should happen |
| 192 | # automagically from here. |
| 193 | # |
| 194 | |
| 195 | |
| 196 | # Examples need different flags based on whether we're building |
| 197 | # from an installed tree or a version controlled tree. Determine |
| 198 | # the proper paths. |
| 199 | ifeq ($(HAVE_ALT_TREE_LAYOUT),yes) |
| 200 | LIB_PATH := $(SRC_PATH_BARE)/../lib |
| 201 | INC_PATH := $(SRC_PATH_BARE)/../include |
| 202 | else |
| 203 | LIB_PATH-yes += $(if $(BUILD_PFX),$(BUILD_PFX),.) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 204 | INC_PATH-$(CONFIG_VP8_DECODER) += $(SRC_PATH_BARE)/vp8 |
| 205 | INC_PATH-$(CONFIG_VP8_ENCODER) += $(SRC_PATH_BARE)/vp8 |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 206 | INC_PATH-$(CONFIG_VP9_DECODER) += $(SRC_PATH_BARE)/vp9 |
| 207 | INC_PATH-$(CONFIG_VP9_ENCODER) += $(SRC_PATH_BARE)/vp9 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 208 | LIB_PATH := $(call enabled,LIB_PATH) |
| 209 | INC_PATH := $(call enabled,INC_PATH) |
| 210 | endif |
Ronald S. Bultje | bbf890f | 2011-05-02 13:56:41 -0400 | [diff] [blame] | 211 | INTERNAL_CFLAGS = $(addprefix -I,$(INC_PATH)) |
| 212 | INTERNAL_LDFLAGS += $(addprefix -L,$(LIB_PATH)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 213 | |
| 214 | |
| 215 | # Expand list of selected examples to build (as specified above) |
| 216 | UTILS = $(call enabled,UTILS) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 217 | EXAMPLES = $(addprefix examples/,$(call enabled,EXAMPLES)) |
| 218 | ALL_EXAMPLES = $(UTILS) $(EXAMPLES) |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 219 | UTIL_SRCS = $(foreach ex,$(UTILS),$($(ex:.c=).SRCS)) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 220 | ALL_SRCS = $(foreach ex,$(ALL_EXAMPLES),$($(notdir $(ex:.c=)).SRCS)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 221 | CODEC_EXTRA_LIBS=$(sort $(call enabled,CODEC_EXTRA_LIBS)) |
| 222 | |
| 223 | |
| 224 | # Expand all example sources into a variable containing all sources |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 225 | # for that example (not just them main one specified in UTILS/EXAMPLES) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 226 | # and add this file to the list (for MSVS workspace generation) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 227 | $(foreach ex,$(ALL_EXAMPLES),$(eval $(notdir $(ex:.c=)).SRCS += $(ex) examples.mk)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 228 | |
| 229 | |
| 230 | # If this is a universal (fat) binary, then all the subarchitectures have |
| 231 | # already been built and our job is to stitch them together. The |
| 232 | # BUILD_OBJS variable indicates whether we should be building |
| 233 | # (compiling, linking) the library. The LIPO_OBJS variable indicates |
| 234 | # that we're stitching. |
| 235 | $(eval $(if $(filter universal%,$(TOOLCHAIN)),LIPO_OBJS,BUILD_OBJS):=yes) |
| 236 | |
| 237 | |
| 238 | # Create build/install dependencies for all examples. The common case |
| 239 | # is handled here. The MSVS case is handled below. |
| 240 | NOT_MSVS = $(if $(CONFIG_MSVS),,yes) |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 241 | DIST-BINS-$(NOT_MSVS) += $(addprefix bin/,$(ALL_EXAMPLES:.c=$(EXE_SFX))) |
| 242 | INSTALL-BINS-$(NOT_MSVS) += $(addprefix bin/,$(UTILS:.c=$(EXE_SFX))) |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 243 | DIST-SRCS-yes += $(ALL_SRCS) |
| 244 | INSTALL-SRCS-yes += $(UTIL_SRCS) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 245 | OBJS-$(NOT_MSVS) += $(if $(BUILD_OBJS),$(call objs,$(ALL_SRCS))) |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 246 | BINS-$(NOT_MSVS) += $(addprefix $(BUILD_PFX),$(ALL_EXAMPLES:.c=$(EXE_SFX))) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 247 | |
| 248 | |
| 249 | # Instantiate linker template for all examples. |
| 250 | CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx) |
jimbankoski | 45e551b | 2012-07-25 19:39:33 -0700 | [diff] [blame] | 251 | SHARED_LIB_SUF=$(if $(filter darwin%,$(TGT_OS)),.dylib,.so) |
| 252 | CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 253 | $(foreach bin,$(BINS-yes),\ |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 254 | $(if $(BUILD_OBJS),$(eval $(bin):\ |
| 255 | $(LIB_PATH)/lib$(CODEC_LIB)$(CODEC_LIB_SUF)))\ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 256 | $(if $(BUILD_OBJS),$(eval $(call linker_template,$(bin),\ |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 257 | $(call objs,$($(notdir $(bin:$(EXE_SFX)=)).SRCS)) \ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 258 | -l$(CODEC_LIB) $(addprefix -l,$(CODEC_EXTRA_LIBS))\ |
| 259 | )))\ |
| 260 | $(if $(LIPO_OBJS),$(eval $(call lipo_bin_template,$(bin))))\ |
| 261 | ) |
| 262 | |
| 263 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 264 | # The following pairs define a mapping of locations in the distribution |
| 265 | # tree to locations in the source/build trees. |
| 266 | INSTALL_MAPS += src/%.c %.c |
| 267 | INSTALL_MAPS += src/% $(SRC_PATH_BARE)/% |
| 268 | INSTALL_MAPS += bin/% % |
| 269 | INSTALL_MAPS += % % |
| 270 | |
| 271 | |
| 272 | # Set up additional MSVS environment |
| 273 | ifeq ($(CONFIG_MSVS),yes) |
Jim Bankoski | 1b16e74 | 2012-07-23 12:32:59 -0700 | [diff] [blame] | 274 | CODEC_LIB=$(if $(CONFIG_SHARED),vpx,$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 275 | # This variable uses deferred expansion intentionally, since the results of |
| 276 | # $(wildcard) may change during the course of the Make. |
| 277 | VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d)))) |
| 278 | INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),bin/$(p)/% $(p)/Release/%) |
| 279 | endif |
| 280 | |
| 281 | # Build Visual Studio Projects. We use a template here to instantiate |
| 282 | # explicit rules rather than using an implicit rule because we want to |
| 283 | # leverage make's VPATH searching rather than specifying the paths on |
| 284 | # each file in ALL_EXAMPLES. This has the unfortunate side effect that |
| 285 | # touching the source files trigger a rebuild of the project files |
| 286 | # even though there is no real dependency there (the dependency is on |
| 287 | # the makefiles). We may want to revisit this. |
| 288 | define vcproj_template |
Martin Storsjo | 9a5cac0 | 2013-05-18 19:57:19 +0300 | [diff] [blame] | 289 | $(1): $($(1:.$(VCPROJ_SFX)=).SRCS) vpx.$(VCPROJ_SFX) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 290 | @echo " [vcproj] $$@" |
Martin Storsjo | 0b4637e | 2013-05-17 00:56:46 +0300 | [diff] [blame] | 291 | $$(GEN_VCPROJ)\ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 292 | --exe\ |
| 293 | --target=$$(TOOLCHAIN)\ |
Martin Storsjo | 0b4637e | 2013-05-17 00:56:46 +0300 | [diff] [blame] | 294 | --name=$$(@:.$(VCPROJ_SFX)=)\ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 295 | --ver=$$(CONFIG_VS_VERSION)\ |
Martin Storsjo | 0b4637e | 2013-05-17 00:56:46 +0300 | [diff] [blame] | 296 | --proj-guid=$$($$(@:.$(VCPROJ_SFX)=).GUID)\ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 297 | $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \ |
Ronald S. Bultje | bbf890f | 2011-05-02 13:56:41 -0400 | [diff] [blame] | 298 | --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \ |
Martin Storsjo | a37e84d | 2013-05-19 12:21:29 +0300 | [diff] [blame] | 299 | $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 300 | endef |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 301 | ALL_EXAMPLES_BASENAME := $(notdir $(ALL_EXAMPLES)) |
| 302 | PROJECTS-$(CONFIG_MSVS) += $(ALL_EXAMPLES_BASENAME:.c=.$(VCPROJ_SFX)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 303 | INSTALL-BINS-$(CONFIG_MSVS) += $(foreach p,$(VS_PLATFORMS),\ |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 304 | $(addprefix bin/$(p)/,$(ALL_EXAMPLES_BASENAME:.c=.exe))) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 305 | $(foreach proj,$(call enabled,PROJECTS),\ |
| 306 | $(eval $(call vcproj_template,$(proj)))) |
James Zern | 354c566 | 2014-02-14 19:38:20 -0800 | [diff] [blame] | 307 | |
| 308 | # |
| 309 | # Documentation Rules |
| 310 | # |
| 311 | %.dox: %.c |
| 312 | @echo " [DOXY] $@" |
| 313 | @echo "/*!\page example_$(@F:.dox=) $(@F:.dox=)" > $@ |
| 314 | @echo " \includelineno $(<F)" >> $@ |
| 315 | @echo "*/" >> $@ |
| 316 | |
| 317 | samples.dox: examples.mk |
| 318 | @echo " [DOXY] $@" |
| 319 | @echo "/*!\page samples Sample Code" > $@ |
| 320 | @echo " This SDK includes a number of sample applications."\ |
| 321 | "Each sample documents a feature of the SDK in both prose"\ |
| 322 | "and the associated C code."\ |
| 323 | "The following samples are included: ">>$@ |
| 324 | @$(foreach ex,$(sort $(notdir $(EXAMPLES:.c=))),\ |
| 325 | echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) |
| 326 | @echo >> $@ |
| 327 | @echo " In addition, the SDK contains a number of utilities."\ |
| 328 | "Since these utilities are built upon the concepts described"\ |
| 329 | "in the sample code listed above, they are not documented in"\ |
| 330 | "pieces like the samples are. Their source is included here"\ |
| 331 | "for reference. The following utilities are included:" >> $@ |
| 332 | @$(foreach ex,$(sort $(UTILS:.c=)),\ |
| 333 | echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) |
| 334 | @echo "*/" >> $@ |
| 335 | |
| 336 | CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox) |
| 337 | DOCS-yes += examples.doxy samples.dox |
| 338 | examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox) |
| 339 | @echo "INPUT += $^" > $@ |