1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/angle/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +# This Source Code Form is subject to the terms of the Mozilla Public 1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.7 + 1.8 +ifdef MOZ_ANGLE_RENDERER 1.9 + 1.10 +libs:: 1.11 +ifdef MOZ_D3DCOMPILER_DLL_PATH 1.12 + cp -fp "$(MOZ_D3DCOMPILER_DLL_PATH)" "$(DIST)/bin" 1.13 +else 1.14 +ifdef MOZ_D3DCOMPILER_CAB 1.15 + expand '$(MOZ_D3DCOMPILER_CAB)' -F:$(MOZ_D3DCOMPILER_DLL) '$(DIST)/bin' 1.16 +endif 1.17 +endif 1.18 + 1.19 +endif 1.20 + 1.21 +include $(topsrcdir)/config/rules.mk 1.22 + 1.23 +# We have to filter out -pedantic, because of 1.24 +# comma-at-end-of-enumerator list failures. We can try to get this fixed 1.25 +# upstream at some point. 1.26 +CXXFLAGS := $(filter-out -pedantic,$(CXXFLAGS)) 1.27 +CFLAGS := $(filter-out -pedantic,$(CFLAGS))