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
|
|
|
|
|
|
|
|
# This makefile builds the unicharutil_external_s library which should be used
|
|
|
|
# by frozen (dependent) linkage components. Internal-linkage code should use
|
|
|
|
# unicharutil_s which is built in the internal/ subdirectory.
|
|
|
|
|
|
|
|
include $(srcdir)/objs.mk
|
|
|
|
|
|
|
|
DIST_INSTALL = 1
|
2007-08-03 07:46:17 -07:00
|
|
|
SDK_LIBRARY = $(LIBRARY)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
|
2013-07-01 14:24:53 -07:00
|
|
|
DISABLED_SDK_HEADERS = \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsUnicharUtils.h \
|
2007-08-03 07:46:17 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
FORCE_STATIC_LIB = 1
|
2007-04-23 12:25:39 -07:00
|
|
|
USE_STATIC_LIBS = 1
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-29 12:22:16 -07:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../src
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2007-04-23 12:25:39 -07:00
|
|
|
|
|
|
|
ifdef _MSC_VER
|
|
|
|
# Don't include directives about which CRT to use
|
|
|
|
OS_COMPILE_CXXFLAGS += -Zl
|
|
|
|
OS_COMPILE_CFLAGS += -Zl
|
|
|
|
DEFINES += -D_USE_ANSI_CPP
|
|
|
|
endif
|