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 | |
| 11 | |
Johann | 128d2c2 | 2011-03-02 09:44:39 -0500 | [diff] [blame] | 12 | # ARM assembly files are written in RVCT-style. We use some make magic to |
| 13 | # filter those files to allow GCC compilation |
| 14 | ifeq ($(ARCH_ARM),yes) |
| 15 | ASM:=$(if $(filter yes,$(CONFIG_GCC)),.asm.s,.asm) |
| 16 | else |
| 17 | ASM:=.asm |
| 18 | endif |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 19 | |
John Koleszar | 4d86ef3 | 2010-06-22 08:44:48 -0400 | [diff] [blame] | 20 | CODEC_SRCS-yes += libs.mk |
| 21 | |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 22 | include $(SRC_PATH_BARE)/vpx/vpx_codec.mk |
| 23 | CODEC_SRCS-yes += $(addprefix vpx/,$(call enabled,API_SRCS)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 24 | |
| 25 | include $(SRC_PATH_BARE)/vpx_mem/vpx_mem.mk |
| 26 | CODEC_SRCS-yes += $(addprefix vpx_mem/,$(call enabled,MEM_SRCS)) |
| 27 | |
| 28 | include $(SRC_PATH_BARE)/vpx_scale/vpx_scale.mk |
| 29 | CODEC_SRCS-yes += $(addprefix vpx_scale/,$(call enabled,SCALE_SRCS)) |
| 30 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 31 | |
| 32 | ifeq ($(CONFIG_VP8_ENCODER),yes) |
| 33 | VP8_PREFIX=vp8/ |
| 34 | include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8cx.mk |
| 35 | CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_CX_SRCS)) |
| 36 | CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_CX_EXPORTS)) |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 37 | CODEC_SRCS-yes += $(VP8_PREFIX)vp8cx.mk vpx/vp8.h vpx/vp8cx.h vpx/vp8e.h |
Johann | 3e8c6d3 | 2011-08-01 17:16:10 -0400 | [diff] [blame] | 38 | CODEC_SRCS-$(ARCH_ARM) += $(VP8_PREFIX)vp8cx_arm.mk |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 39 | INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8e.h include/vpx/vp8cx.h |
| 40 | INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/% |
| 41 | CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8cx.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 42 | CODEC_DOC_SECTIONS += vp8 vp8_encoder |
| 43 | endif |
| 44 | |
| 45 | ifeq ($(CONFIG_VP8_DECODER),yes) |
| 46 | VP8_PREFIX=vp8/ |
| 47 | include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8dx.mk |
| 48 | CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_DX_SRCS)) |
| 49 | CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_DX_EXPORTS)) |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 50 | CODEC_SRCS-yes += $(VP8_PREFIX)vp8dx.mk vpx/vp8.h vpx/vp8dx.h |
Johann | 3e8c6d3 | 2011-08-01 17:16:10 -0400 | [diff] [blame] | 51 | CODEC_SRCS-$(ARCH_ARM) += $(VP8_PREFIX)vp8dx_arm.mk |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 52 | INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h |
| 53 | INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/% |
| 54 | CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8dx.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 55 | CODEC_DOC_SECTIONS += vp8 vp8_decoder |
| 56 | endif |
| 57 | |
| 58 | |
| 59 | ifeq ($(CONFIG_ENCODERS),yes) |
| 60 | CODEC_DOC_SECTIONS += encoder |
| 61 | endif |
| 62 | ifeq ($(CONFIG_DECODERS),yes) |
| 63 | CODEC_DOC_SECTIONS += decoder |
| 64 | endif |
| 65 | |
| 66 | |
| 67 | ifeq ($(CONFIG_MSVS),yes) |
| 68 | CODEC_LIB=$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd) |
| 69 | # This variable uses deferred expansion intentionally, since the results of |
| 70 | # $(wildcard) may change during the course of the Make. |
| 71 | VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d)))) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 72 | endif |
| 73 | |
| 74 | # The following pairs define a mapping of locations in the distribution |
| 75 | # tree to locations in the source/build trees. |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 76 | INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx/% |
| 77 | INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx_ports/% |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 78 | INSTALL_MAPS += $(LIBSUBDIR)/% % |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 79 | INSTALL_MAPS += src/% $(SRC_PATH_BARE)/% |
| 80 | ifeq ($(CONFIG_MSVS),yes) |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 81 | INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Release/%) |
| 82 | INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Debug/%) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 83 | endif |
| 84 | |
| 85 | # If this is a universal (fat) binary, then all the subarchitectures have |
| 86 | # already been built and our job is to stitch them together. The |
| 87 | # BUILD_LIBVPX variable indicates whether we should be building |
| 88 | # (compiling, linking) the library. The LIPO_LIBVPX variable indicates |
| 89 | # that we're stitching. |
| 90 | $(eval $(if $(filter universal%,$(TOOLCHAIN)),LIPO_LIBVPX,BUILD_LIBVPX):=yes) |
| 91 | |
| 92 | CODEC_SRCS-$(BUILD_LIBVPX) += build/make/version.sh |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 93 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx/vpx_integer.h |
John Koleszar | 8ef25de | 2011-07-29 16:56:43 -0400 | [diff] [blame] | 94 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx_ports/asm_offsets.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 95 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx_ports/vpx_timer.h |
| 96 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx_ports/mem.h |
| 97 | CODEC_SRCS-$(BUILD_LIBVPX) += $(BUILD_PFX)vpx_config.c |
| 98 | INSTALL-SRCS-no += $(BUILD_PFX)vpx_config.c |
| 99 | ifeq ($(ARCH_X86)$(ARCH_X86_64),yes) |
| 100 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx_ports/emms.asm |
| 101 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx_ports/x86.h |
| 102 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx_ports/x86_abi_support.asm |
Fritz Koenig | 0f5c63e | 2010-10-12 14:55:31 -0700 | [diff] [blame] | 103 | CODEC_SRCS-$(BUILD_LIBVPX) += vpx_ports/x86_cpuid.c |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 104 | endif |
Timothy B. Terriberry | b71962f | 2010-10-20 15:39:11 -0700 | [diff] [blame] | 105 | CODEC_SRCS-$(ARCH_ARM) += vpx_ports/arm_cpudetect.c |
Johann | 3e8c6d3 | 2011-08-01 17:16:10 -0400 | [diff] [blame] | 106 | CODEC_SRCS-$(ARCH_ARM) += vpx_ports/arm.h |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 107 | CODEC_EXPORTS-$(BUILD_LIBVPX) += vpx/exports_com |
| 108 | CODEC_EXPORTS-$(CONFIG_ENCODERS) += vpx/exports_enc |
| 109 | CODEC_EXPORTS-$(CONFIG_DECODERS) += vpx/exports_dec |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 110 | |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 111 | INSTALL-LIBS-yes += include/vpx/vpx_codec.h |
| 112 | INSTALL-LIBS-yes += include/vpx/vpx_image.h |
| 113 | INSTALL-LIBS-yes += include/vpx/vpx_integer.h |
| 114 | INSTALL-LIBS-yes += include/vpx/vpx_codec_impl_top.h |
| 115 | INSTALL-LIBS-yes += include/vpx/vpx_codec_impl_bottom.h |
| 116 | INSTALL-LIBS-$(CONFIG_DECODERS) += include/vpx/vpx_decoder.h |
| 117 | INSTALL-LIBS-$(CONFIG_DECODERS) += include/vpx/vpx_decoder_compat.h |
| 118 | INSTALL-LIBS-$(CONFIG_ENCODERS) += include/vpx/vpx_encoder.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 119 | ifeq ($(CONFIG_EXTERNAL_BUILD),yes) |
| 120 | ifeq ($(CONFIG_MSVS),yes) |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 121 | INSTALL-LIBS-yes += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB).lib) |
| 122 | INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB)d.lib) |
| 123 | INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.dll) |
| 124 | INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.exp) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 125 | endif |
| 126 | else |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 127 | INSTALL-LIBS-$(CONFIG_STATIC) += $(LIBSUBDIR)/libvpx.a |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 128 | INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(LIBSUBDIR)/libvpx_g.a |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 129 | endif |
| 130 | |
| 131 | CODEC_SRCS=$(call enabled,CODEC_SRCS) |
| 132 | INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(CODEC_SRCS) |
| 133 | INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(call enabled,CODEC_EXPORTS) |
| 134 | |
| 135 | ifeq ($(CONFIG_EXTERNAL_BUILD),yes) |
| 136 | ifeq ($(CONFIG_MSVS),yes) |
| 137 | |
Johann | 128d2c2 | 2011-03-02 09:44:39 -0500 | [diff] [blame] | 138 | obj_int_extract.vcproj: $(SRC_PATH_BARE)/build/make/obj_int_extract.c |
| 139 | @cp $(SRC_PATH_BARE)/build/x86-msvs/obj_int_extract.bat . |
| 140 | @echo " [CREATE] $@" |
| 141 | $(SRC_PATH_BARE)/build/make/gen_msvs_proj.sh \ |
| 142 | --exe \ |
| 143 | --target=$(TOOLCHAIN) \ |
| 144 | --name=obj_int_extract \ |
| 145 | --ver=$(CONFIG_VS_VERSION) \ |
| 146 | --proj-guid=E1360C65-D375-4335-8057-7ED99CC3F9B2 \ |
| 147 | $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \ |
| 148 | --out=$@ $^ \ |
| 149 | -I. \ |
| 150 | -I"$(SRC_PATH_BARE)" \ |
| 151 | |
| 152 | PROJECTS-$(BUILD_LIBVPX) += obj_int_extract.vcproj |
| 153 | PROJECTS-$(BUILD_LIBVPX) += obj_int_extract.bat |
| 154 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 155 | vpx.def: $(call enabled,CODEC_EXPORTS) |
| 156 | @echo " [CREATE] $@" |
| 157 | $(SRC_PATH_BARE)/build/make/gen_msvs_def.sh\ |
| 158 | --name=vpx\ |
| 159 | --out=$@ $^ |
| 160 | CLEAN-OBJS += vpx.def |
| 161 | |
| 162 | vpx.vcproj: $(CODEC_SRCS) vpx.def |
| 163 | @echo " [CREATE] $@" |
Johann | 128d2c2 | 2011-03-02 09:44:39 -0500 | [diff] [blame] | 164 | $(SRC_PATH_BARE)/build/make/gen_msvs_proj.sh \ |
| 165 | --lib \ |
| 166 | --target=$(TOOLCHAIN) \ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 167 | $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \ |
Johann | 128d2c2 | 2011-03-02 09:44:39 -0500 | [diff] [blame] | 168 | --name=vpx \ |
| 169 | --proj-guid=DCE19DAF-69AC-46DB-B14A-39F0FAA5DB74 \ |
| 170 | --module-def=vpx.def \ |
| 171 | --ver=$(CONFIG_VS_VERSION) \ |
| 172 | --out=$@ $(CFLAGS) $^ \ |
| 173 | --src-path-bare="$(SRC_PATH_BARE)" \ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 174 | |
| 175 | PROJECTS-$(BUILD_LIBVPX) += vpx.vcproj |
| 176 | |
| 177 | vpx.vcproj: vpx_config.asm |
| 178 | |
| 179 | endif |
| 180 | else |
| 181 | LIBVPX_OBJS=$(call objs,$(CODEC_SRCS)) |
| 182 | OBJS-$(BUILD_LIBVPX) += $(LIBVPX_OBJS) |
John Koleszar | 06f58c0 | 2011-08-03 09:20:37 -0400 | [diff] [blame^] | 183 | LIBS-$(if $(BUILD_LIBVPX),$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 184 | $(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS) |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 185 | |
| 186 | BUILD_LIBVPX_SO := $(if $(BUILD_LIBVPX),$(CONFIG_SHARED)) |
| 187 | LIBVPX_SO := libvpx.so.$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH) |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 188 | LIBS-$(BUILD_LIBVPX_SO) += $(BUILD_PFX)$(LIBVPX_SO)\ |
| 189 | $(notdir $(LIBVPX_SO_SYMLINKS)) |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 190 | $(BUILD_PFX)$(LIBVPX_SO): $(LIBVPX_OBJS) libvpx.ver |
Tero Rintaluoma | 5405bd9 | 2011-06-14 11:29:35 +0300 | [diff] [blame] | 191 | $(BUILD_PFX)$(LIBVPX_SO): extralibs += -lm |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 192 | $(BUILD_PFX)$(LIBVPX_SO): SONAME = libvpx.so.$(VERSION_MAJOR) |
| 193 | $(BUILD_PFX)$(LIBVPX_SO): SO_VERSION_SCRIPT = libvpx.ver |
| 194 | LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \ |
| 195 | libvpx.so libvpx.so.$(VERSION_MAJOR) \ |
| 196 | libvpx.so.$(VERSION_MAJOR).$(VERSION_MINOR)) |
| 197 | |
| 198 | libvpx.ver: $(call enabled,CODEC_EXPORTS) |
| 199 | @echo " [CREATE] $@" |
| 200 | $(qexec)echo "{ global:" > $@ |
| 201 | $(qexec)for f in $?; do awk '{print $$2";"}' < $$f >>$@; done |
| 202 | $(qexec)echo "local: *; };" >> $@ |
| 203 | CLEAN-OBJS += libvpx.ver |
| 204 | |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 205 | define libvpx_symlink_template |
| 206 | $(1): $(2) |
| 207 | @echo " [LN] $$@" |
| 208 | $(qexec)ln -sf $(LIBVPX_SO) $$@ |
| 209 | endef |
| 210 | |
| 211 | $(eval $(call libvpx_symlink_template,\ |
| 212 | $(addprefix $(BUILD_PFX),$(notdir $(LIBVPX_SO_SYMLINKS))),\ |
| 213 | $(BUILD_PFX)$(LIBVPX_SO))) |
| 214 | $(eval $(call libvpx_symlink_template,\ |
| 215 | $(addprefix $(DIST_DIR)/,$(LIBVPX_SO_SYMLINKS)),\ |
| 216 | $(DIST_DIR)/$(LIBSUBDIR)/$(LIBVPX_SO))) |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 217 | |
| 218 | INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS) |
| 219 | INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO) |
Ralph Giles | 607f842 | 2011-03-28 12:04:51 -0700 | [diff] [blame] | 220 | |
| 221 | LIBS-$(BUILD_LIBVPX) += vpx.pc |
| 222 | vpx.pc: config.mk libs.mk |
| 223 | @echo " [CREATE] $@" |
| 224 | $(qexec)echo '# pkg-config file from libvpx $(VERSION_STRING)' > $@ |
| 225 | $(qexec)echo 'prefix=$(PREFIX)' >> $@ |
| 226 | $(qexec)echo 'exec_prefix=$${prefix}' >> $@ |
| 227 | $(qexec)echo 'libdir=$${prefix}/lib' >> $@ |
| 228 | $(qexec)echo 'includedir=$${prefix}/include' >> $@ |
| 229 | $(qexec)echo '' >> $@ |
| 230 | $(qexec)echo 'Name: vpx' >> $@ |
| 231 | $(qexec)echo 'Description: WebM Project VPx codec implementation' >> $@ |
| 232 | $(qexec)echo 'Version: $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)' >> $@ |
| 233 | $(qexec)echo 'Requires:' >> $@ |
| 234 | $(qexec)echo 'Conflicts:' >> $@ |
| 235 | $(qexec)echo 'Libs: -L$${libdir} -lvpx' >> $@ |
| 236 | $(qexec)echo 'Cflags: -I$${includedir}' >> $@ |
| 237 | INSTALL-LIBS-yes += $(LIBSUBDIR)/pkgconfig/vpx.pc |
| 238 | INSTALL_MAPS += $(LIBSUBDIR)/pkgconfig/%.pc %.pc |
| 239 | CLEAN-OBJS += vpx.pc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 240 | endif |
| 241 | |
| 242 | LIBS-$(LIPO_LIBVPX) += libvpx.a |
| 243 | $(eval $(if $(LIPO_LIBVPX),$(call lipo_lib_template,libvpx.a))) |
| 244 | |
| 245 | # |
| 246 | # Rule to make assembler configuration file from C configuration file |
| 247 | # |
| 248 | ifeq ($(ARCH_X86)$(ARCH_X86_64),yes) |
| 249 | # YASM |
| 250 | $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h |
| 251 | @echo " [CREATE] $@" |
| 252 | @egrep "#define [A-Z0-9_]+ [01]" $< \ |
| 253 | | awk '{print $$2 " equ " $$3}' > $@ |
| 254 | else |
| 255 | ADS2GAS=$(if $(filter yes,$(CONFIG_GCC)),| $(ASM_CONVERSION)) |
| 256 | $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h |
| 257 | @echo " [CREATE] $@" |
| 258 | @egrep "#define [A-Z0-9_]+ [01]" $< \ |
| 259 | | awk '{print $$2 " EQU " $$3}' $(ADS2GAS) > $@ |
| 260 | @echo " END" $(ADS2GAS) >> $@ |
| 261 | CLEAN-OBJS += $(BUILD_PFX)vpx_config.asm |
| 262 | endif |
| 263 | |
| 264 | # |
| 265 | # Add assembler dependencies for configuration and offsets |
| 266 | # |
Johann | 128d2c2 | 2011-03-02 09:44:39 -0500 | [diff] [blame] | 267 | $(filter %.s.o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm |
| 268 | $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 269 | |
Johann | 40dcae9 | 2011-02-04 17:44:31 -0500 | [diff] [blame] | 270 | # |
| 271 | # Calculate platform- and compiler-specific offsets for hand coded assembly |
| 272 | # |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 273 | |
| 274 | ifeq ($(filter icc gcc,$(TGT_CC)), $(TGT_CC)) |
John Koleszar | c1bf6ca | 2011-08-03 08:43:43 -0400 | [diff] [blame] | 275 | $(BUILD_PFX)asm_com_offsets.asm: $(BUILD_PFX)$(VP8_PREFIX)common/asm_com_offsets.c.S |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 276 | grep EQU $< | tr -d '$$\#' $(ADS2GAS) > $@ |
John Koleszar | c1bf6ca | 2011-08-03 08:43:43 -0400 | [diff] [blame] | 277 | $(BUILD_PFX)$(VP8_PREFIX)common/asm_com_offsets.c.S: $(VP8_PREFIX)common/asm_com_offsets.c |
| 278 | CLEAN-OBJS += $(BUILD_PFX)asm_com_offsets.asm $(BUILD_PFX)$(VP8_PREFIX)common/asm_com_offsets.c.S |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 279 | |
John Koleszar | c1bf6ca | 2011-08-03 08:43:43 -0400 | [diff] [blame] | 280 | $(BUILD_PFX)asm_enc_offsets.asm: $(BUILD_PFX)$(VP8_PREFIX)encoder/asm_enc_offsets.c.S |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 281 | grep EQU $< | tr -d '$$\#' $(ADS2GAS) > $@ |
John Koleszar | c1bf6ca | 2011-08-03 08:43:43 -0400 | [diff] [blame] | 282 | $(BUILD_PFX)$(VP8_PREFIX)encoder/asm_enc_offsets.c.S: $(VP8_PREFIX)encoder/asm_enc_offsets.c |
| 283 | CLEAN-OBJS += $(BUILD_PFX)asm_enc_offsets.asm $(BUILD_PFX)$(VP8_PREFIX)encoder/asm_enc_offsets.c.S |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 284 | |
John Koleszar | c1bf6ca | 2011-08-03 08:43:43 -0400 | [diff] [blame] | 285 | $(BUILD_PFX)asm_dec_offsets.asm: $(BUILD_PFX)$(VP8_PREFIX)decoder/asm_dec_offsets.c.S |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 286 | grep EQU $< | tr -d '$$\#' $(ADS2GAS) > $@ |
John Koleszar | c1bf6ca | 2011-08-03 08:43:43 -0400 | [diff] [blame] | 287 | $(BUILD_PFX)$(VP8_PREFIX)decoder/asm_dec_offsets.c.S: $(VP8_PREFIX)decoder/asm_dec_offsets.c |
| 288 | CLEAN-OBJS += $(BUILD_PFX)asm_dec_offsets.asm $(BUILD_PFX)$(VP8_PREFIX)decoder/asm_dec_offsets.c.S |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 289 | else |
| 290 | ifeq ($(filter rvct,$(TGT_CC)), $(TGT_CC)) |
Johann | 128d2c2 | 2011-03-02 09:44:39 -0500 | [diff] [blame] | 291 | asm_com_offsets.asm: obj_int_extract |
Johann | abb7c21 | 2011-06-08 11:36:04 -0700 | [diff] [blame] | 292 | asm_com_offsets.asm: $(VP8_PREFIX)common/asm_com_offsets.c.o |
Johann | 40dcae9 | 2011-02-04 17:44:31 -0500 | [diff] [blame] | 293 | ./obj_int_extract rvds $< $(ADS2GAS) > $@ |
Johann | 128d2c2 | 2011-03-02 09:44:39 -0500 | [diff] [blame] | 294 | OBJS-yes += $(VP8_PREFIX)common/asm_com_offsets.c.o |
| 295 | CLEAN-OBJS += asm_com_offsets.asm |
| 296 | $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)asm_com_offsets.asm |
Johann | 40dcae9 | 2011-02-04 17:44:31 -0500 | [diff] [blame] | 297 | |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 298 | asm_enc_offsets.asm: obj_int_extract |
| 299 | asm_enc_offsets.asm: $(VP8_PREFIX)encoder/asm_enc_offsets.c.o |
Johann | 40dcae9 | 2011-02-04 17:44:31 -0500 | [diff] [blame] | 300 | ./obj_int_extract rvds $< $(ADS2GAS) > $@ |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 301 | OBJS-yes += $(VP8_PREFIX)encoder/asm_enc_offsets.c.o |
| 302 | CLEAN-OBJS += asm_enc_offsets.asm |
| 303 | $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)asm_enc_offsets.asm |
Johann | 40dcae9 | 2011-02-04 17:44:31 -0500 | [diff] [blame] | 304 | |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 305 | asm_dec_offsets.asm: obj_int_extract |
| 306 | asm_dec_offsets.asm: $(VP8_PREFIX)decoder/asm_dec_offsets.c.o |
Johann | 40dcae9 | 2011-02-04 17:44:31 -0500 | [diff] [blame] | 307 | ./obj_int_extract rvds $< $(ADS2GAS) > $@ |
Johann | 79327be | 2011-06-08 14:43:34 -0400 | [diff] [blame] | 308 | OBJS-yes += $(VP8_PREFIX)decoder/asm_dec_offsets.c.o |
| 309 | CLEAN-OBJS += asm_dec_offsets.asm |
| 310 | $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)asm_dec_offsets.asm |
Johann | 40dcae9 | 2011-02-04 17:44:31 -0500 | [diff] [blame] | 311 | endif |
| 312 | endif |
| 313 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 314 | $(shell $(SRC_PATH_BARE)/build/make/version.sh "$(SRC_PATH_BARE)" $(BUILD_PFX)vpx_version.h) |
| 315 | CLEAN-OBJS += $(BUILD_PFX)vpx_version.h |
| 316 | |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 317 | CODEC_DOC_SRCS += vpx/vpx_codec.h \ |
| 318 | vpx/vpx_decoder.h \ |
| 319 | vpx/vpx_encoder.h \ |
| 320 | vpx/vpx_image.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 321 | |
| 322 | CLEAN-OBJS += libs.doxy |
| 323 | DOCS-yes += libs.doxy |
| 324 | libs.doxy: $(CODEC_DOC_SRCS) |
| 325 | @echo " [CREATE] $@" |
| 326 | @rm -f $@ |
| 327 | @echo "INPUT += $^" >> $@ |
| 328 | @echo "PREDEFINED = VPX_CODEC_DISABLE_COMPAT" >> $@ |
| 329 | @echo "INCLUDE_PATH += ." >> $@; |
| 330 | @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@ |