blob: fad02cfcd2b549512a6fe59a4b49ad3fc5c9f9c9 [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001##
John Koleszarc2140b82010-09-09 08:16:39 -04002## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
John Koleszar0ea50ce2010-05-18 11:58:33 -04003##
John Koleszar94c52e42010-06-18 12:39:21 -04004## Use of this source code is governed by a BSD-style license
John Koleszar09202d82010-06-04 16:19:40 -04005## 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 Koleszar94c52e42010-06-18 12:39:21 -04007## in the file PATENTS. All contributing project authors may
John Koleszar09202d82010-06-04 16:19:40 -04008## be found in the AUTHORS file in the root of the source tree.
John Koleszar0ea50ce2010-05-18 11:58:33 -04009##
10
John Koleszar7dfec962012-03-01 12:50:40 -080011LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \
James Zern3a7d4672014-08-10 16:15:18 -070012 third_party/libyuv/include/libyuv/convert.h \
13 third_party/libyuv/include/libyuv/convert_argb.h \
14 third_party/libyuv/include/libyuv/convert_from.h \
John Koleszar7dfec962012-03-01 12:50:40 -080015 third_party/libyuv/include/libyuv/cpu_id.h \
Deb Mukherjee47031c02014-05-16 18:52:01 -070016 third_party/libyuv/include/libyuv/planar_functions.h \
James Zern3a7d4672014-08-10 16:15:18 -070017 third_party/libyuv/include/libyuv/rotate.h \
Deb Mukherjee47031c02014-05-16 18:52:01 -070018 third_party/libyuv/include/libyuv/row.h \
John Koleszar7dfec962012-03-01 12:50:40 -080019 third_party/libyuv/include/libyuv/scale.h \
Deb Mukherjee47031c02014-05-16 18:52:01 -070020 third_party/libyuv/include/libyuv/scale_row.h \
21 third_party/libyuv/source/cpu_id.cc \
22 third_party/libyuv/source/planar_functions.cc \
23 third_party/libyuv/source/row_any.cc \
24 third_party/libyuv/source/row_common.cc \
25 third_party/libyuv/source/row_mips.cc \
26 third_party/libyuv/source/row_neon.cc \
James Zern3a7d4672014-08-10 16:15:18 -070027 third_party/libyuv/source/row_neon64.cc \
Deb Mukherjee47031c02014-05-16 18:52:01 -070028 third_party/libyuv/source/row_posix.cc \
29 third_party/libyuv/source/row_win.cc \
James Zern3a7d4672014-08-10 16:15:18 -070030 third_party/libyuv/source/scale.cc \
Deb Mukherjee47031c02014-05-16 18:52:01 -070031 third_party/libyuv/source/scale_common.cc \
32 third_party/libyuv/source/scale_mips.cc \
33 third_party/libyuv/source/scale_neon.cc \
James Zern2f5e0fa2014-08-22 18:16:44 -070034 third_party/libyuv/source/scale_neon64.cc \
Deb Mukherjee47031c02014-05-16 18:52:01 -070035 third_party/libyuv/source/scale_posix.cc \
James Zern3a7d4672014-08-10 16:15:18 -070036 third_party/libyuv/source/scale_win.cc \
John Koleszar0ea50ce2010-05-18 11:58:33 -040037
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -070038LIBWEBM_MUXER_SRCS += third_party/libwebm/mkvmuxer.cpp \
39 third_party/libwebm/mkvmuxerutil.cpp \
40 third_party/libwebm/mkvwriter.cpp \
41 third_party/libwebm/mkvmuxer.hpp \
42 third_party/libwebm/mkvmuxertypes.hpp \
43 third_party/libwebm/mkvmuxerutil.hpp \
44 third_party/libwebm/mkvparser.hpp \
45 third_party/libwebm/mkvwriter.hpp \
46 third_party/libwebm/webmids.hpp
47
Vignesh Venkatasubramaniandbd24712014-04-03 00:41:14 -070048LIBWEBM_PARSER_SRCS = third_party/libwebm/mkvparser.cpp \
49 third_party/libwebm/mkvreader.cpp \
50 third_party/libwebm/mkvparser.hpp \
51 third_party/libwebm/mkvreader.hpp
52
James Zern77bbcab2014-02-05 16:55:01 -080053# List of examples to build. UTILS are tools meant for distribution
54# while EXAMPLES demonstrate specific portions of the API.
John Koleszarea68ee02010-10-21 15:02:10 -040055UTILS-$(CONFIG_DECODERS) += vpxdec.c
56vpxdec.SRCS += md5_utils.c md5_utils.h
Dmitry Kovalev4334c072014-02-26 16:32:09 -080057vpxdec.SRCS += vpx_ports/mem_ops.h
58vpxdec.SRCS += vpx_ports/mem_ops_aligned.h
Johanncad0eca2015-05-07 16:41:33 -070059vpxdec.SRCS += vpx_ports/msvc.h
John Koleszarea68ee02010-10-21 15:02:10 -040060vpxdec.SRCS += vpx_ports/vpx_timer.h
61vpxdec.SRCS += vpx/vpx_integer.h
Attila Nagy1a7d25a2011-09-15 15:34:12 +030062vpxdec.SRCS += args.c args.h
Tom Finegan00a35aa2013-11-14 12:37:42 -080063vpxdec.SRCS += ivfdec.c ivfdec.h
John Koleszarc377bf02010-11-02 09:11:57 -040064vpxdec.SRCS += tools_common.c tools_common.h
Dmitry Kovalev5ab63582014-01-17 17:02:37 -080065vpxdec.SRCS += y4menc.c y4menc.h
Deb Mukherjee47031c02014-05-16 18:52:01 -070066ifeq ($(CONFIG_LIBYUV),yes)
67 vpxdec.SRCS += $(LIBYUV_SRCS)
68endif
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070069ifeq ($(CONFIG_WEBM_IO),yes)
Vignesh Venkatasubramaniandbd24712014-04-03 00:41:14 -070070 vpxdec.SRCS += $(LIBWEBM_PARSER_SRCS)
71 vpxdec.SRCS += webmdec.cc webmdec.h
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070072endif
John Koleszarea68ee02010-10-21 15:02:10 -040073vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
74vpxdec.DESCRIPTION = Full featured decoder
75UTILS-$(CONFIG_ENCODERS) += vpxenc.c
Tom Finegan49dc9ca2013-11-21 16:46:40 -080076vpxenc.SRCS += args.c args.h y4minput.c y4minput.h vpxenc.h
Tom Finegan00a35aa2013-11-14 12:37:42 -080077vpxenc.SRCS += ivfdec.c ivfdec.h
78vpxenc.SRCS += ivfenc.c ivfenc.h
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -080079vpxenc.SRCS += rate_hist.c rate_hist.h
John Koleszarc377bf02010-11-02 09:11:57 -040080vpxenc.SRCS += tools_common.c tools_common.h
Tom Finegan249366b2013-11-25 12:05:19 -080081vpxenc.SRCS += warnings.c warnings.h
Attila Nagy1a7d25a2011-09-15 15:34:12 +030082vpxenc.SRCS += vpx_ports/mem_ops.h
John Koleszarea68ee02010-10-21 15:02:10 -040083vpxenc.SRCS += vpx_ports/mem_ops_aligned.h
Johanncad0eca2015-05-07 16:41:33 -070084vpxenc.SRCS += vpx_ports/msvc.h
Johannc459d372012-04-02 15:08:18 -070085vpxenc.SRCS += vpx_ports/vpx_timer.h
Tom Finegan78cb2e62013-11-07 21:28:45 -080086vpxenc.SRCS += vpxstats.c vpxstats.h
Deb Mukherjee47031c02014-05-16 18:52:01 -070087ifeq ($(CONFIG_LIBYUV),yes)
88 vpxenc.SRCS += $(LIBYUV_SRCS)
89endif
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070090ifeq ($(CONFIG_WEBM_IO),yes)
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -070091 vpxenc.SRCS += $(LIBWEBM_MUXER_SRCS)
92 vpxenc.SRCS += webmenc.cc webmenc.h
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070093endif
John Koleszarea68ee02010-10-21 15:02:10 -040094vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
95vpxenc.DESCRIPTION = Full featured encoder
James Zernf12ebfc2014-05-14 19:45:20 -070096ifeq ($(CONFIG_SPATIAL_SVC),yes)
97 EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_spatial_svc_encoder.c
98 vp9_spatial_svc_encoder.SRCS += args.c args.h
99 vp9_spatial_svc_encoder.SRCS += ivfenc.c ivfenc.h
100 vp9_spatial_svc_encoder.SRCS += tools_common.c tools_common.h
101 vp9_spatial_svc_encoder.SRCS += video_common.h
102 vp9_spatial_svc_encoder.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700103 vp9_spatial_svc_encoder.SRCS += vpx_ports/msvc.h
James Zernf12ebfc2014-05-14 19:45:20 -0700104 vp9_spatial_svc_encoder.SRCS += vpxstats.c vpxstats.h
105 vp9_spatial_svc_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D
106 vp9_spatial_svc_encoder.DESCRIPTION = VP9 Spatial SVC Encoder
107endif
John Koleszarea68ee02010-10-21 15:02:10 -0400108
Deb Mukherjee4298be32014-04-03 14:06:20 -0700109ifneq ($(CONFIG_SHARED),yes)
James Zern98e16b12014-03-03 18:03:23 -0800110EXAMPLES-$(CONFIG_VP9_ENCODER) += resize_util.c
Deb Mukherjeecacea002014-01-23 14:53:53 -0800111endif
112
Tom Finegana77d6d02014-05-14 11:21:15 -0700113EXAMPLES-$(CONFIG_ENCODERS) += vpx_temporal_svc_encoder.c
114vpx_temporal_svc_encoder.SRCS += ivfenc.c ivfenc.h
115vpx_temporal_svc_encoder.SRCS += tools_common.c tools_common.h
116vpx_temporal_svc_encoder.SRCS += video_common.h
117vpx_temporal_svc_encoder.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700118vpx_temporal_svc_encoder.SRCS += vpx_ports/msvc.h
Tom Finegana77d6d02014-05-14 11:21:15 -0700119vpx_temporal_svc_encoder.GUID = B18C08F2-A439-4502-A78E-849BE3D60947
120vpx_temporal_svc_encoder.DESCRIPTION = Temporal SVC Encoder
Dmitry Kovalev5ba8c792014-09-11 15:46:37 -0700121EXAMPLES-$(CONFIG_DECODERS) += simple_decoder.c
James Zern77bbcab2014-02-05 16:55:01 -0800122simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC
Dmitry Kovalev7ec27692014-01-27 13:40:29 -0800123simple_decoder.SRCS += ivfdec.h ivfdec.c
124simple_decoder.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800125simple_decoder.SRCS += video_common.h
126simple_decoder.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -0800127simple_decoder.SRCS += vpx_ports/mem_ops.h
128simple_decoder.SRCS += vpx_ports/mem_ops_aligned.h
Johanncad0eca2015-05-07 16:41:33 -0700129simple_decoder.SRCS += vpx_ports/msvc.h
James Zern77bbcab2014-02-05 16:55:01 -0800130simple_decoder.DESCRIPTION = Simplified decoder loop
Dmitry Kovalev5ba8c792014-09-11 15:46:37 -0700131EXAMPLES-$(CONFIG_DECODERS) += postproc.c
Dmitry Kovalev2e862ce2014-01-28 11:27:30 -0800132postproc.SRCS += ivfdec.h ivfdec.c
133postproc.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800134postproc.SRCS += video_common.h
135postproc.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -0800136postproc.SRCS += vpx_ports/mem_ops.h
137postproc.SRCS += vpx_ports/mem_ops_aligned.h
Johanncad0eca2015-05-07 16:41:33 -0700138postproc.SRCS += vpx_ports/msvc.h
James Zern77bbcab2014-02-05 16:55:01 -0800139postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7
140postproc.DESCRIPTION = Decoder postprocessor control
Dmitry Kovalev5ba8c792014-09-11 15:46:37 -0700141EXAMPLES-$(CONFIG_DECODERS) += decode_to_md5.c
Dmitry Kovalevc2b33682014-01-24 11:20:09 -0800142decode_to_md5.SRCS += md5_utils.h md5_utils.c
143decode_to_md5.SRCS += ivfdec.h ivfdec.c
144decode_to_md5.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800145decode_to_md5.SRCS += video_common.h
146decode_to_md5.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -0800147decode_to_md5.SRCS += vpx_ports/mem_ops.h
148decode_to_md5.SRCS += vpx_ports/mem_ops_aligned.h
Johanncad0eca2015-05-07 16:41:33 -0700149decode_to_md5.SRCS += vpx_ports/msvc.h
James Zern77bbcab2014-02-05 16:55:01 -0800150decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42
151decode_to_md5.DESCRIPTION = Frame by frame MD5 checksum
Dmitry Kovalev5ba8c792014-09-11 15:46:37 -0700152EXAMPLES-$(CONFIG_ENCODERS) += simple_encoder.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800153simple_encoder.SRCS += ivfenc.h ivfenc.c
154simple_encoder.SRCS += tools_common.h tools_common.c
155simple_encoder.SRCS += video_common.h
156simple_encoder.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700157simple_encoder.SRCS += vpx_ports/msvc.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400158simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD
159simple_encoder.DESCRIPTION = Simplified encoder loop
Dmitry Kovalevcb1f97e2014-09-09 18:51:41 -0700160EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_lossless_encoder.c
161vp9_lossless_encoder.SRCS += ivfenc.h ivfenc.c
162vp9_lossless_encoder.SRCS += tools_common.h tools_common.c
163vp9_lossless_encoder.SRCS += video_common.h
164vp9_lossless_encoder.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700165vp9_lossless_encoder.SRCS += vpx_ports/msvc.h
Dmitry Kovalevcb1f97e2014-09-09 18:51:41 -0700166vp9_lossless_encoder.GUID = B63C7C88-5348-46DC-A5A6-CC151EF93366
167vp9_lossless_encoder.DESCRIPTION = Simplified lossless VP9 encoder
Dmitry Kovalev5ba8c792014-09-11 15:46:37 -0700168EXAMPLES-$(CONFIG_ENCODERS) += twopass_encoder.c
Dmitry Kovalev592936b2014-02-07 11:37:39 -0800169twopass_encoder.SRCS += ivfenc.h ivfenc.c
170twopass_encoder.SRCS += tools_common.h tools_common.c
171twopass_encoder.SRCS += video_common.h
172twopass_encoder.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700173twopass_encoder.SRCS += vpx_ports/msvc.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400174twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD8
175twopass_encoder.DESCRIPTION = Two-pass encoder loop
Dmitry Kovalev5ba8c792014-09-11 15:46:37 -0700176EXAMPLES-$(CONFIG_DECODERS) += decode_with_drops.c
James Zern77bbcab2014-02-05 16:55:01 -0800177decode_with_drops.SRCS += ivfdec.h ivfdec.c
178decode_with_drops.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800179decode_with_drops.SRCS += video_common.h
180decode_with_drops.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -0800181decode_with_drops.SRCS += vpx_ports/mem_ops.h
182decode_with_drops.SRCS += vpx_ports/mem_ops_aligned.h
Johanncad0eca2015-05-07 16:41:33 -0700183decode_with_drops.SRCS += vpx_ports/msvc.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400184decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26
185decode_with_drops.DESCRIPTION = Drops frames while decoding
Alex Converse61ecd7f2014-03-10 16:13:49 -0700186EXAMPLES-$(CONFIG_ENCODERS) += set_maps.c
187set_maps.SRCS += ivfenc.h ivfenc.c
188set_maps.SRCS += tools_common.h tools_common.c
189set_maps.SRCS += video_common.h
190set_maps.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700191set_maps.SRCS += vpx_ports/msvc.h
Alex Converse61ecd7f2014-03-10 16:13:49 -0700192set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F
193set_maps.DESCRIPTION = Set active and ROI maps
James Zern77bbcab2014-02-05 16:55:01 -0800194EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c
Dmitry Kovalevcb4eb792014-03-03 17:41:51 -0800195vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c
196vp8cx_set_ref.SRCS += tools_common.h tools_common.c
197vp8cx_set_ref.SRCS += video_common.h
198vp8cx_set_ref.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700199vp8cx_set_ref.SRCS += vpx_ports/msvc.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400200vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A
201vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame
202
Dmitry Kovalev98254a42014-01-17 16:56:04 -0800203
204ifeq ($(CONFIG_MULTI_RES_ENCODING),yes)
Deb Mukherjee47031c02014-05-16 18:52:01 -0700205ifeq ($(CONFIG_LIBYUV),yes)
Marco Paniconi5f732c22014-07-07 13:57:28 -0700206EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8_multi_resolution_encoder.c
Dmitry Kovalev0c1b9c72014-08-26 15:54:00 -0700207vp8_multi_resolution_encoder.SRCS += ivfenc.h ivfenc.c
Marco Paniconi5f732c22014-07-07 13:57:28 -0700208vp8_multi_resolution_encoder.SRCS += tools_common.h tools_common.c
Dmitry Kovalev0c1b9c72014-08-26 15:54:00 -0700209vp8_multi_resolution_encoder.SRCS += video_writer.h video_writer.c
Johanncad0eca2015-05-07 16:41:33 -0700210vp8_multi_resolution_encoder.SRCS += vpx_ports/msvc.h
Dmitry Kovalev98254a42014-01-17 16:56:04 -0800211vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS)
212vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de
213vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding
214endif
Deb Mukherjee47031c02014-05-16 18:52:01 -0700215endif
John Koleszar0ea50ce2010-05-18 11:58:33 -0400216
217# Handle extra library flags depending on codec configuration
John Koleszar0ea50ce2010-05-18 11:58:33 -0400218
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200219# We should not link to math library (libm) on RVCT
220# when building for bare-metal targets
221ifeq ($(CONFIG_OS_SUPPORT), yes)
222CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700223CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200224else
225 ifeq ($(CONFIG_GCC), yes)
226 CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700227 CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200228 endif
229endif
John Koleszar0ea50ce2010-05-18 11:58:33 -0400230#
231# End of specified files. The rest of the build rules should happen
232# automagically from here.
233#
234
235
236# Examples need different flags based on whether we're building
237# from an installed tree or a version controlled tree. Determine
238# the proper paths.
239ifeq ($(HAVE_ALT_TREE_LAYOUT),yes)
James Zern3a7d4672014-08-10 16:15:18 -0700240 LIB_PATH-yes := $(SRC_PATH_BARE)/../lib
241 INC_PATH-yes := $(SRC_PATH_BARE)/../include
John Koleszar0ea50ce2010-05-18 11:58:33 -0400242else
243 LIB_PATH-yes += $(if $(BUILD_PFX),$(BUILD_PFX),.)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400244 INC_PATH-$(CONFIG_VP8_DECODER) += $(SRC_PATH_BARE)/vp8
245 INC_PATH-$(CONFIG_VP8_ENCODER) += $(SRC_PATH_BARE)/vp8
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700246 INC_PATH-$(CONFIG_VP9_DECODER) += $(SRC_PATH_BARE)/vp9
247 INC_PATH-$(CONFIG_VP9_ENCODER) += $(SRC_PATH_BARE)/vp9
John Koleszar0ea50ce2010-05-18 11:58:33 -0400248endif
James Zern3a7d4672014-08-10 16:15:18 -0700249INC_PATH-$(CONFIG_LIBYUV) += $(SRC_PATH_BARE)/third_party/libyuv/include
250LIB_PATH := $(call enabled,LIB_PATH)
251INC_PATH := $(call enabled,INC_PATH)
Ronald S. Bultjebbf890f2011-05-02 13:56:41 -0400252INTERNAL_CFLAGS = $(addprefix -I,$(INC_PATH))
253INTERNAL_LDFLAGS += $(addprefix -L,$(LIB_PATH))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400254
255
256# Expand list of selected examples to build (as specified above)
257UTILS = $(call enabled,UTILS)
James Zern77bbcab2014-02-05 16:55:01 -0800258EXAMPLES = $(addprefix examples/,$(call enabled,EXAMPLES))
259ALL_EXAMPLES = $(UTILS) $(EXAMPLES)
John Koleszaree8bcb12010-05-24 10:16:44 -0400260UTIL_SRCS = $(foreach ex,$(UTILS),$($(ex:.c=).SRCS))
James Zern77bbcab2014-02-05 16:55:01 -0800261ALL_SRCS = $(foreach ex,$(ALL_EXAMPLES),$($(notdir $(ex:.c=)).SRCS))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400262CODEC_EXTRA_LIBS=$(sort $(call enabled,CODEC_EXTRA_LIBS))
263
264
265# Expand all example sources into a variable containing all sources
James Zern77bbcab2014-02-05 16:55:01 -0800266# for that example (not just them main one specified in UTILS/EXAMPLES)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400267# and add this file to the list (for MSVS workspace generation)
James Zern77bbcab2014-02-05 16:55:01 -0800268$(foreach ex,$(ALL_EXAMPLES),$(eval $(notdir $(ex:.c=)).SRCS += $(ex) examples.mk))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400269
270
John Koleszar0ea50ce2010-05-18 11:58:33 -0400271# Create build/install dependencies for all examples. The common case
272# is handled here. The MSVS case is handled below.
273NOT_MSVS = $(if $(CONFIG_MSVS),,yes)
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900274DIST-BINS-$(NOT_MSVS) += $(addprefix bin/,$(ALL_EXAMPLES:.c=$(EXE_SFX)))
275INSTALL-BINS-$(NOT_MSVS) += $(addprefix bin/,$(UTILS:.c=$(EXE_SFX)))
John Koleszaree8bcb12010-05-24 10:16:44 -0400276DIST-SRCS-yes += $(ALL_SRCS)
277INSTALL-SRCS-yes += $(UTIL_SRCS)
Tom Finegan3d7063d2015-05-12 15:33:40 -0700278OBJS-$(NOT_MSVS) += $(call objs,$(ALL_SRCS))
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900279BINS-$(NOT_MSVS) += $(addprefix $(BUILD_PFX),$(ALL_EXAMPLES:.c=$(EXE_SFX)))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400280
281
282# Instantiate linker template for all examples.
283CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx)
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900284ifneq ($(filter darwin%,$(TGT_OS)),)
285SHARED_LIB_SUF=.dylib
286else
287ifneq ($(filter os2%,$(TGT_OS)),)
288SHARED_LIB_SUF=_dll.a
289else
290SHARED_LIB_SUF=.so
291endif
292endif
jimbankoski45e551b2012-07-25 19:39:33 -0700293CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400294$(foreach bin,$(BINS-yes),\
Tom Finegan3d7063d2015-05-12 15:33:40 -0700295 $(eval $(bin):$(LIB_PATH)/lib$(CODEC_LIB)$(CODEC_LIB_SUF))\
296 $(eval $(call linker_template,$(bin),\
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900297 $(call objs,$($(notdir $(bin:$(EXE_SFX)=)).SRCS)) \
John Koleszar0ea50ce2010-05-18 11:58:33 -0400298 -l$(CODEC_LIB) $(addprefix -l,$(CODEC_EXTRA_LIBS))\
Tom Finegan3d7063d2015-05-12 15:33:40 -0700299 )))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400300
John Koleszar0ea50ce2010-05-18 11:58:33 -0400301# The following pairs define a mapping of locations in the distribution
302# tree to locations in the source/build trees.
303INSTALL_MAPS += src/%.c %.c
304INSTALL_MAPS += src/% $(SRC_PATH_BARE)/%
305INSTALL_MAPS += bin/% %
306INSTALL_MAPS += % %
307
308
309# Set up additional MSVS environment
310ifeq ($(CONFIG_MSVS),yes)
Jim Bankoski1b16e742012-07-23 12:32:59 -0700311CODEC_LIB=$(if $(CONFIG_SHARED),vpx,$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400312# This variable uses deferred expansion intentionally, since the results of
313# $(wildcard) may change during the course of the Make.
314VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d))))
315INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),bin/$(p)/% $(p)/Release/%)
316endif
317
318# Build Visual Studio Projects. We use a template here to instantiate
319# explicit rules rather than using an implicit rule because we want to
320# leverage make's VPATH searching rather than specifying the paths on
321# each file in ALL_EXAMPLES. This has the unfortunate side effect that
322# touching the source files trigger a rebuild of the project files
323# even though there is no real dependency there (the dependency is on
324# the makefiles). We may want to revisit this.
325define vcproj_template
Martin Storsjo9a5cac02013-05-18 19:57:19 +0300326$(1): $($(1:.$(VCPROJ_SFX)=).SRCS) vpx.$(VCPROJ_SFX)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400327 @echo " [vcproj] $$@"
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300328 $$(GEN_VCPROJ)\
John Koleszar0ea50ce2010-05-18 11:58:33 -0400329 --exe\
330 --target=$$(TOOLCHAIN)\
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300331 --name=$$(@:.$(VCPROJ_SFX)=)\
John Koleszar0ea50ce2010-05-18 11:58:33 -0400332 --ver=$$(CONFIG_VS_VERSION)\
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300333 --proj-guid=$$($$(@:.$(VCPROJ_SFX)=).GUID)\
James Zernf66590c2014-06-02 16:42:14 -0700334 --src-path-bare="$(SRC_PATH_BARE)" \
John Koleszar0ea50ce2010-05-18 11:58:33 -0400335 $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \
Ronald S. Bultjebbf890f2011-05-02 13:56:41 -0400336 --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \
Martin Storsjoa37e84d2013-05-19 12:21:29 +0300337 $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^
John Koleszar0ea50ce2010-05-18 11:58:33 -0400338endef
James Zern77bbcab2014-02-05 16:55:01 -0800339ALL_EXAMPLES_BASENAME := $(notdir $(ALL_EXAMPLES))
340PROJECTS-$(CONFIG_MSVS) += $(ALL_EXAMPLES_BASENAME:.c=.$(VCPROJ_SFX))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400341INSTALL-BINS-$(CONFIG_MSVS) += $(foreach p,$(VS_PLATFORMS),\
James Zern77bbcab2014-02-05 16:55:01 -0800342 $(addprefix bin/$(p)/,$(ALL_EXAMPLES_BASENAME:.c=.exe)))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400343$(foreach proj,$(call enabled,PROJECTS),\
344 $(eval $(call vcproj_template,$(proj))))
James Zern354c5662014-02-14 19:38:20 -0800345
346#
347# Documentation Rules
348#
349%.dox: %.c
350 @echo " [DOXY] $@"
James Zernaaccf652015-02-05 19:31:38 -0800351 @mkdir -p $(dir $@)
James Zern354c5662014-02-14 19:38:20 -0800352 @echo "/*!\page example_$(@F:.dox=) $(@F:.dox=)" > $@
353 @echo " \includelineno $(<F)" >> $@
354 @echo "*/" >> $@
355
356samples.dox: examples.mk
357 @echo " [DOXY] $@"
358 @echo "/*!\page samples Sample Code" > $@
359 @echo " This SDK includes a number of sample applications."\
360 "Each sample documents a feature of the SDK in both prose"\
361 "and the associated C code."\
362 "The following samples are included: ">>$@
363 @$(foreach ex,$(sort $(notdir $(EXAMPLES:.c=))),\
364 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
365 @echo >> $@
366 @echo " In addition, the SDK contains a number of utilities."\
367 "Since these utilities are built upon the concepts described"\
368 "in the sample code listed above, they are not documented in"\
369 "pieces like the samples are. Their source is included here"\
370 "for reference. The following utilities are included:" >> $@
371 @$(foreach ex,$(sort $(UTILS:.c=)),\
372 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
373 @echo "*/" >> $@
374
375CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox)
376DOCS-yes += examples.doxy samples.dox
377examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox)
378 @echo "INPUT += $^" > $@