Bug 783551 - Get tooltool running on the b2g on OS X builds. r=respindola
[gecko.git] / content / Makefile.in
blob3f8d39f99319c19a1acb05a764841c8d98890b31
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 DEPTH = @DEPTH@
7 topsrcdir = @top_srcdir@
8 srcdir = @srcdir@
9 VPATH = @srcdir@
11 include $(DEPTH)/config/autoconf.mk
13 MODULE = content
14 PARALLEL_DIRS = base canvas events html mathml/content/src smil svg xml xul xbl xslt
16 ifdef MOZ_MEDIA
17 PARALLEL_DIRS += media
18 endif
20 ifdef MOZ_XTF
21 PARALLEL_DIRS += xtf
22 endif
24 ifdef ENABLE_TESTS
25 TOOL_DIRS += test
26 endif
28 # Prevent floating point errors caused by VC++ optimizations
29 ifeq ($(OS_ARCH)_$(GNU_CC),WINNT_)
30 ifeq (,$(filter-out 1200 1300 1310,$(_MSC_VER)))
31 CFLAGS += -Op
32 else
33 CFLAGS += -fp:precise
34 endif
35 endif # WINNT
37 include $(topsrcdir)/config/rules.mk