2007-03-22 10:30:00 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2007-03-22 10:30:00 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = content
|
2011-10-06 09:15:07 -07:00
|
|
|
PARALLEL_DIRS = base canvas events html mathml/content/src smil svg xml xul xbl xslt
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-07-09 01:22:20 -07:00
|
|
|
ifdef MOZ_MEDIA
|
2009-10-22 15:13:12 -07:00
|
|
|
PARALLEL_DIRS += media
|
2008-07-09 01:22:20 -07:00
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifdef MOZ_XTF
|
2008-10-30 10:02:14 -07:00
|
|
|
PARALLEL_DIRS += xtf
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef ENABLE_TESTS
|
|
|
|
TOOL_DIRS += test
|
|
|
|
endif
|
|
|
|
|
2008-04-08 04:47:57 -07:00
|
|
|
# Prevent floating point errors caused by VC++ optimizations
|
|
|
|
ifeq ($(OS_ARCH)_$(GNU_CC),WINNT_)
|
|
|
|
ifeq (,$(filter-out 1200 1300 1310,$(_MSC_VER)))
|
|
|
|
CFLAGS += -Op
|
|
|
|
else
|
|
|
|
CFLAGS += -fp:precise
|
|
|
|
endif
|
|
|
|
endif # WINNT
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|