2012-01-11 02:10:55 -08: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/.
|
|
|
|
|
|
|
|
STL_FLAGS =
|
|
|
|
|
2012-02-21 23:12:15 -08:00
|
|
|
HOST_LIBS = -lz
|
|
|
|
|
2013-11-27 21:24:05 -08:00
|
|
|
DEFINES += -DIMPL_MFBT
|
|
|
|
|
2012-01-11 02:10:55 -08:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2013-03-05 22:29:59 -08:00
|
|
|
|
|
|
|
ifeq (arm,$(TARGET_CPU))
|
|
|
|
ifdef MOZ_THUMB2
|
|
|
|
HOST_CXXFLAGS += -DTARGET_THUMB
|
|
|
|
else
|
|
|
|
HOST_CXXFLAGS += -DTARGET_ARM
|
|
|
|
endif
|
|
|
|
endif
|
2013-03-08 00:32:56 -08:00
|
|
|
ifeq (x86,$(CPU_ARCH))
|
|
|
|
HOST_CXXFLAGS += -DTARGET_X86
|
|
|
|
endif
|