blob: c36159fc77a7217a6d062af647a6a3d0de92ceb8 [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 \
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 Koleszar0ea50ce2010-05-18 11:58:33 -040017
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -070018LIBWEBM_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 Venkatasubramaniandbd24712014-04-03 00:41:14 -070028LIBWEBM_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 Zern77bbcab2014-02-05 16:55:01 -080033# List of examples to build. UTILS are tools meant for distribution
34# while EXAMPLES demonstrate specific portions of the API.
John Koleszarea68ee02010-10-21 15:02:10 -040035UTILS-$(CONFIG_DECODERS) += vpxdec.c
36vpxdec.SRCS += md5_utils.c md5_utils.h
Dmitry Kovalev4334c072014-02-26 16:32:09 -080037vpxdec.SRCS += vpx_ports/mem_ops.h
38vpxdec.SRCS += vpx_ports/mem_ops_aligned.h
John Koleszarea68ee02010-10-21 15:02:10 -040039vpxdec.SRCS += vpx_ports/vpx_timer.h
40vpxdec.SRCS += vpx/vpx_integer.h
Attila Nagy1a7d25a2011-09-15 15:34:12 +030041vpxdec.SRCS += args.c args.h
Tom Finegan00a35aa2013-11-14 12:37:42 -080042vpxdec.SRCS += ivfdec.c ivfdec.h
John Koleszarc377bf02010-11-02 09:11:57 -040043vpxdec.SRCS += tools_common.c tools_common.h
Dmitry Kovalev5ab635832014-01-17 17:02:37 -080044vpxdec.SRCS += y4menc.c y4menc.h
John Koleszar7d8fc262013-02-25 16:58:47 -080045vpxdec.SRCS += $(LIBYUV_SRCS)
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070046ifeq ($(CONFIG_WEBM_IO),yes)
Vignesh Venkatasubramaniandbd24712014-04-03 00:41:14 -070047 vpxdec.SRCS += $(LIBWEBM_PARSER_SRCS)
48 vpxdec.SRCS += webmdec.cc webmdec.h
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070049endif
John Koleszarea68ee02010-10-21 15:02:10 -040050vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
51vpxdec.DESCRIPTION = Full featured decoder
52UTILS-$(CONFIG_ENCODERS) += vpxenc.c
Tom Finegan49dc9ca2013-11-21 16:46:40 -080053vpxenc.SRCS += args.c args.h y4minput.c y4minput.h vpxenc.h
Tom Finegan00a35aa2013-11-14 12:37:42 -080054vpxenc.SRCS += ivfdec.c ivfdec.h
55vpxenc.SRCS += ivfenc.c ivfenc.h
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -080056vpxenc.SRCS += rate_hist.c rate_hist.h
John Koleszarc377bf02010-11-02 09:11:57 -040057vpxenc.SRCS += tools_common.c tools_common.h
Tom Finegan249366b2013-11-25 12:05:19 -080058vpxenc.SRCS += warnings.c warnings.h
Attila Nagy1a7d25a2011-09-15 15:34:12 +030059vpxenc.SRCS += vpx_ports/mem_ops.h
John Koleszarea68ee02010-10-21 15:02:10 -040060vpxenc.SRCS += vpx_ports/mem_ops_aligned.h
Johannc459d372012-04-02 15:08:18 -070061vpxenc.SRCS += vpx_ports/vpx_timer.h
Tom Finegan78cb2e62013-11-07 21:28:45 -080062vpxenc.SRCS += vpxstats.c vpxstats.h
John Koleszar7dfec962012-03-01 12:50:40 -080063vpxenc.SRCS += $(LIBYUV_SRCS)
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070064ifeq ($(CONFIG_WEBM_IO),yes)
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -070065 vpxenc.SRCS += $(LIBWEBM_MUXER_SRCS)
66 vpxenc.SRCS += webmenc.cc webmenc.h
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070067endif
John Koleszarea68ee02010-10-21 15:02:10 -040068vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
69vpxenc.DESCRIPTION = Full featured encoder
James Zern20eb5cb2014-02-21 17:57:27 -080070EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_spatial_scalable_encoder.c
Ivan Maltz1ed0e1b2013-10-23 11:53:37 -070071vp9_spatial_scalable_encoder.SRCS += args.c args.h
Tom Finegan00a35aa2013-11-14 12:37:42 -080072vp9_spatial_scalable_encoder.SRCS += ivfenc.c ivfenc.h
73vp9_spatial_scalable_encoder.SRCS += tools_common.c tools_common.h
Dmitry Kovalev14db3bf2014-02-12 11:23:49 -080074vp9_spatial_scalable_encoder.SRCS += video_common.h
75vp9_spatial_scalable_encoder.SRCS += video_writer.h video_writer.c
Minghai Shangb0c146e2014-02-28 14:22:57 -080076vp9_spatial_scalable_encoder.SRCS += vpxstats.c vpxstats.h
James Zerna0fcbcf2013-09-17 18:47:25 -070077vp9_spatial_scalable_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D
78vp9_spatial_scalable_encoder.DESCRIPTION = Spatial Scalable Encoder
John Koleszarea68ee02010-10-21 15:02:10 -040079
Deb Mukherjee4298be32014-04-03 14:06:20 -070080ifneq ($(CONFIG_SHARED),yes)
James Zern98e16b12014-03-03 18:03:23 -080081EXAMPLES-$(CONFIG_VP9_ENCODER) += resize_util.c
Deb Mukherjeecacea002014-01-23 14:53:53 -080082endif
83
Marco Paniconi4864ab22014-02-06 09:23:17 -080084EXAMPLES-$(CONFIG_ENCODERS) += vpx_temporal_scalable_patterns.c
85vpx_temporal_scalable_patterns.SRCS += ivfenc.c ivfenc.h
86vpx_temporal_scalable_patterns.SRCS += tools_common.c tools_common.h
Dmitry Kovalev4f8a30b2014-02-06 14:20:58 -080087vpx_temporal_scalable_patterns.SRCS += video_common.h
88vpx_temporal_scalable_patterns.SRCS += video_writer.h video_writer.c
Marco Paniconi4864ab22014-02-06 09:23:17 -080089vpx_temporal_scalable_patterns.GUID = B18C08F2-A439-4502-A78E-849BE3D60947
90vpx_temporal_scalable_patterns.DESCRIPTION = Temporal Scalability Encoder
James Zern77bbcab2014-02-05 16:55:01 -080091EXAMPLES-$(CONFIG_VP8_DECODER) += simple_decoder.c
92simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC
Dmitry Kovalev7ec27692014-01-27 13:40:29 -080093simple_decoder.SRCS += ivfdec.h ivfdec.c
94simple_decoder.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -080095simple_decoder.SRCS += video_common.h
96simple_decoder.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -080097simple_decoder.SRCS += vpx_ports/mem_ops.h
98simple_decoder.SRCS += vpx_ports/mem_ops_aligned.h
James Zern77bbcab2014-02-05 16:55:01 -080099simple_decoder.DESCRIPTION = Simplified decoder loop
100EXAMPLES-$(CONFIG_VP8_DECODER) += postproc.c
Dmitry Kovalev2e862ce2014-01-28 11:27:30 -0800101postproc.SRCS += ivfdec.h ivfdec.c
102postproc.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800103postproc.SRCS += video_common.h
104postproc.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -0800105postproc.SRCS += vpx_ports/mem_ops.h
106postproc.SRCS += vpx_ports/mem_ops_aligned.h
James Zern77bbcab2014-02-05 16:55:01 -0800107postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7
108postproc.DESCRIPTION = Decoder postprocessor control
109EXAMPLES-$(CONFIG_VP8_DECODER) += decode_to_md5.c
Dmitry Kovalevc2b33682014-01-24 11:20:09 -0800110decode_to_md5.SRCS += md5_utils.h md5_utils.c
111decode_to_md5.SRCS += ivfdec.h ivfdec.c
112decode_to_md5.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800113decode_to_md5.SRCS += video_common.h
114decode_to_md5.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -0800115decode_to_md5.SRCS += vpx_ports/mem_ops.h
116decode_to_md5.SRCS += vpx_ports/mem_ops_aligned.h
James Zern77bbcab2014-02-05 16:55:01 -0800117decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42
118decode_to_md5.DESCRIPTION = Frame by frame MD5 checksum
James Zern77bbcab2014-02-05 16:55:01 -0800119EXAMPLES-$(CONFIG_VP8_ENCODER) += simple_encoder.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800120simple_encoder.SRCS += ivfenc.h ivfenc.c
121simple_encoder.SRCS += tools_common.h tools_common.c
122simple_encoder.SRCS += video_common.h
123simple_encoder.SRCS += video_writer.h video_writer.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400124simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD
125simple_encoder.DESCRIPTION = Simplified encoder loop
James Zern77bbcab2014-02-05 16:55:01 -0800126EXAMPLES-$(CONFIG_VP8_ENCODER) += twopass_encoder.c
Dmitry Kovalev592936b2014-02-07 11:37:39 -0800127twopass_encoder.SRCS += ivfenc.h ivfenc.c
128twopass_encoder.SRCS += tools_common.h tools_common.c
129twopass_encoder.SRCS += video_common.h
130twopass_encoder.SRCS += video_writer.h video_writer.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400131twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD8
132twopass_encoder.DESCRIPTION = Two-pass encoder loop
John Koleszar0ea50ce2010-05-18 11:58:33 -0400133ifeq ($(CONFIG_DECODERS),yes)
James Zern77bbcab2014-02-05 16:55:01 -0800134EXAMPLES-$(CONFIG_VP8_ENCODER) += decode_with_drops.c
135decode_with_drops.SRCS += ivfdec.h ivfdec.c
136decode_with_drops.SRCS += tools_common.h tools_common.c
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800137decode_with_drops.SRCS += video_common.h
138decode_with_drops.SRCS += video_reader.h video_reader.c
Dmitry Kovalev4334c072014-02-26 16:32:09 -0800139decode_with_drops.SRCS += vpx_ports/mem_ops.h
140decode_with_drops.SRCS += vpx_ports/mem_ops_aligned.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400141endif
142decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26
143decode_with_drops.DESCRIPTION = Drops frames while decoding
Alex Converse61ecd7f2014-03-10 16:13:49 -0700144EXAMPLES-$(CONFIG_ENCODERS) += set_maps.c
145set_maps.SRCS += ivfenc.h ivfenc.c
146set_maps.SRCS += tools_common.h tools_common.c
147set_maps.SRCS += video_common.h
148set_maps.SRCS += video_writer.h video_writer.c
149set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F
150set_maps.DESCRIPTION = Set active and ROI maps
James Zern77bbcab2014-02-05 16:55:01 -0800151EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c
Dmitry Kovalevcb4eb792014-03-03 17:41:51 -0800152vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c
153vp8cx_set_ref.SRCS += tools_common.h tools_common.c
154vp8cx_set_ref.SRCS += video_common.h
155vp8cx_set_ref.SRCS += video_writer.h video_writer.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400156vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A
157vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame
158
Dmitry Kovalev98254a42014-01-17 16:56:04 -0800159
160ifeq ($(CONFIG_MULTI_RES_ENCODING),yes)
James Zern77bbcab2014-02-05 16:55:01 -0800161EXAMPLES-$(CONFIG_VP8_DECODER) += vp8_multi_resolution_encoder.c
Dmitry Kovalev98254a42014-01-17 16:56:04 -0800162vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS)
163vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de
164vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding
165endif
John Koleszar0ea50ce2010-05-18 11:58:33 -0400166
167# Handle extra library flags depending on codec configuration
John Koleszar0ea50ce2010-05-18 11:58:33 -0400168
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200169# We should not link to math library (libm) on RVCT
170# when building for bare-metal targets
171ifeq ($(CONFIG_OS_SUPPORT), yes)
172CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700173CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200174else
175 ifeq ($(CONFIG_GCC), yes)
176 CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700177 CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200178 endif
179endif
John Koleszar0ea50ce2010-05-18 11:58:33 -0400180#
181# End of specified files. The rest of the build rules should happen
182# automagically from here.
183#
184
185
186# Examples need different flags based on whether we're building
187# from an installed tree or a version controlled tree. Determine
188# the proper paths.
189ifeq ($(HAVE_ALT_TREE_LAYOUT),yes)
190 LIB_PATH := $(SRC_PATH_BARE)/../lib
191 INC_PATH := $(SRC_PATH_BARE)/../include
192else
193 LIB_PATH-yes += $(if $(BUILD_PFX),$(BUILD_PFX),.)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400194 INC_PATH-$(CONFIG_VP8_DECODER) += $(SRC_PATH_BARE)/vp8
195 INC_PATH-$(CONFIG_VP8_ENCODER) += $(SRC_PATH_BARE)/vp8
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700196 INC_PATH-$(CONFIG_VP9_DECODER) += $(SRC_PATH_BARE)/vp9
197 INC_PATH-$(CONFIG_VP9_ENCODER) += $(SRC_PATH_BARE)/vp9
John Koleszar0ea50ce2010-05-18 11:58:33 -0400198 LIB_PATH := $(call enabled,LIB_PATH)
199 INC_PATH := $(call enabled,INC_PATH)
200endif
Ronald S. Bultjebbf890f2011-05-02 13:56:41 -0400201INTERNAL_CFLAGS = $(addprefix -I,$(INC_PATH))
202INTERNAL_LDFLAGS += $(addprefix -L,$(LIB_PATH))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400203
204
205# Expand list of selected examples to build (as specified above)
206UTILS = $(call enabled,UTILS)
James Zern77bbcab2014-02-05 16:55:01 -0800207EXAMPLES = $(addprefix examples/,$(call enabled,EXAMPLES))
208ALL_EXAMPLES = $(UTILS) $(EXAMPLES)
John Koleszaree8bcb12010-05-24 10:16:44 -0400209UTIL_SRCS = $(foreach ex,$(UTILS),$($(ex:.c=).SRCS))
James Zern77bbcab2014-02-05 16:55:01 -0800210ALL_SRCS = $(foreach ex,$(ALL_EXAMPLES),$($(notdir $(ex:.c=)).SRCS))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400211CODEC_EXTRA_LIBS=$(sort $(call enabled,CODEC_EXTRA_LIBS))
212
213
214# Expand all example sources into a variable containing all sources
James Zern77bbcab2014-02-05 16:55:01 -0800215# for that example (not just them main one specified in UTILS/EXAMPLES)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400216# and add this file to the list (for MSVS workspace generation)
James Zern77bbcab2014-02-05 16:55:01 -0800217$(foreach ex,$(ALL_EXAMPLES),$(eval $(notdir $(ex:.c=)).SRCS += $(ex) examples.mk))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400218
219
220# If this is a universal (fat) binary, then all the subarchitectures have
221# already been built and our job is to stitch them together. The
222# BUILD_OBJS variable indicates whether we should be building
223# (compiling, linking) the library. The LIPO_OBJS variable indicates
224# that we're stitching.
225$(eval $(if $(filter universal%,$(TOOLCHAIN)),LIPO_OBJS,BUILD_OBJS):=yes)
226
227
228# Create build/install dependencies for all examples. The common case
229# is handled here. The MSVS case is handled below.
230NOT_MSVS = $(if $(CONFIG_MSVS),,yes)
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900231DIST-BINS-$(NOT_MSVS) += $(addprefix bin/,$(ALL_EXAMPLES:.c=$(EXE_SFX)))
232INSTALL-BINS-$(NOT_MSVS) += $(addprefix bin/,$(UTILS:.c=$(EXE_SFX)))
John Koleszaree8bcb12010-05-24 10:16:44 -0400233DIST-SRCS-yes += $(ALL_SRCS)
234INSTALL-SRCS-yes += $(UTIL_SRCS)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400235OBJS-$(NOT_MSVS) += $(if $(BUILD_OBJS),$(call objs,$(ALL_SRCS)))
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900236BINS-$(NOT_MSVS) += $(addprefix $(BUILD_PFX),$(ALL_EXAMPLES:.c=$(EXE_SFX)))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400237
238
239# Instantiate linker template for all examples.
240CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx)
jimbankoski45e551b2012-07-25 19:39:33 -0700241SHARED_LIB_SUF=$(if $(filter darwin%,$(TGT_OS)),.dylib,.so)
242CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400243$(foreach bin,$(BINS-yes),\
James Zern495b2412011-07-25 15:40:36 -0700244 $(if $(BUILD_OBJS),$(eval $(bin):\
245 $(LIB_PATH)/lib$(CODEC_LIB)$(CODEC_LIB_SUF)))\
John Koleszar0ea50ce2010-05-18 11:58:33 -0400246 $(if $(BUILD_OBJS),$(eval $(call linker_template,$(bin),\
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900247 $(call objs,$($(notdir $(bin:$(EXE_SFX)=)).SRCS)) \
John Koleszar0ea50ce2010-05-18 11:58:33 -0400248 -l$(CODEC_LIB) $(addprefix -l,$(CODEC_EXTRA_LIBS))\
249 )))\
250 $(if $(LIPO_OBJS),$(eval $(call lipo_bin_template,$(bin))))\
251 )
252
253
John Koleszar0ea50ce2010-05-18 11:58:33 -0400254# The following pairs define a mapping of locations in the distribution
255# tree to locations in the source/build trees.
256INSTALL_MAPS += src/%.c %.c
257INSTALL_MAPS += src/% $(SRC_PATH_BARE)/%
258INSTALL_MAPS += bin/% %
259INSTALL_MAPS += % %
260
261
262# Set up additional MSVS environment
263ifeq ($(CONFIG_MSVS),yes)
Jim Bankoski1b16e742012-07-23 12:32:59 -0700264CODEC_LIB=$(if $(CONFIG_SHARED),vpx,$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400265# This variable uses deferred expansion intentionally, since the results of
266# $(wildcard) may change during the course of the Make.
267VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d))))
268INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),bin/$(p)/% $(p)/Release/%)
269endif
270
271# Build Visual Studio Projects. We use a template here to instantiate
272# explicit rules rather than using an implicit rule because we want to
273# leverage make's VPATH searching rather than specifying the paths on
274# each file in ALL_EXAMPLES. This has the unfortunate side effect that
275# touching the source files trigger a rebuild of the project files
276# even though there is no real dependency there (the dependency is on
277# the makefiles). We may want to revisit this.
278define vcproj_template
Martin Storsjo9a5cac02013-05-18 19:57:19 +0300279$(1): $($(1:.$(VCPROJ_SFX)=).SRCS) vpx.$(VCPROJ_SFX)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400280 @echo " [vcproj] $$@"
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300281 $$(GEN_VCPROJ)\
John Koleszar0ea50ce2010-05-18 11:58:33 -0400282 --exe\
283 --target=$$(TOOLCHAIN)\
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300284 --name=$$(@:.$(VCPROJ_SFX)=)\
John Koleszar0ea50ce2010-05-18 11:58:33 -0400285 --ver=$$(CONFIG_VS_VERSION)\
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300286 --proj-guid=$$($$(@:.$(VCPROJ_SFX)=).GUID)\
John Koleszar0ea50ce2010-05-18 11:58:33 -0400287 $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \
Ronald S. Bultjebbf890f2011-05-02 13:56:41 -0400288 --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \
Martin Storsjoa37e84d2013-05-19 12:21:29 +0300289 $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^
John Koleszar0ea50ce2010-05-18 11:58:33 -0400290endef
James Zern77bbcab2014-02-05 16:55:01 -0800291ALL_EXAMPLES_BASENAME := $(notdir $(ALL_EXAMPLES))
292PROJECTS-$(CONFIG_MSVS) += $(ALL_EXAMPLES_BASENAME:.c=.$(VCPROJ_SFX))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400293INSTALL-BINS-$(CONFIG_MSVS) += $(foreach p,$(VS_PLATFORMS),\
James Zern77bbcab2014-02-05 16:55:01 -0800294 $(addprefix bin/$(p)/,$(ALL_EXAMPLES_BASENAME:.c=.exe)))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400295$(foreach proj,$(call enabled,PROJECTS),\
296 $(eval $(call vcproj_template,$(proj))))
James Zern354c5662014-02-14 19:38:20 -0800297
298#
299# Documentation Rules
300#
301%.dox: %.c
302 @echo " [DOXY] $@"
303 @echo "/*!\page example_$(@F:.dox=) $(@F:.dox=)" > $@
304 @echo " \includelineno $(<F)" >> $@
305 @echo "*/" >> $@
306
307samples.dox: examples.mk
308 @echo " [DOXY] $@"
309 @echo "/*!\page samples Sample Code" > $@
310 @echo " This SDK includes a number of sample applications."\
311 "Each sample documents a feature of the SDK in both prose"\
312 "and the associated C code."\
313 "The following samples are included: ">>$@
314 @$(foreach ex,$(sort $(notdir $(EXAMPLES:.c=))),\
315 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
316 @echo >> $@
317 @echo " In addition, the SDK contains a number of utilities."\
318 "Since these utilities are built upon the concepts described"\
319 "in the sample code listed above, they are not documented in"\
320 "pieces like the samples are. Their source is included here"\
321 "for reference. The following utilities are included:" >> $@
322 @$(foreach ex,$(sort $(UTILS:.c=)),\
323 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
324 @echo "*/" >> $@
325
326CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox)
327DOCS-yes += examples.doxy samples.dox
328examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox)
329 @echo "INPUT += $^" > $@