2001-03-05 23:26:03 +03:00
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/NPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
2001-12-01 01:48:55 +03:00
|
|
|
# Contributor(s): John Gaunt (jgaunt@netscape.com)
|
2001-03-05 23:26:03 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = accessibility
|
|
|
|
LIBRARY_NAME = accessibility
|
2001-04-28 23:48:12 +04:00
|
|
|
EXPORT_LIBRARY = 1
|
2002-01-16 08:10:09 +03:00
|
|
|
ifneq ($(OS_ARCH),WINNT)
|
2001-03-29 07:33:55 +04:00
|
|
|
SHORT_LIBNAME = access
|
2002-01-16 08:10:09 +03:00
|
|
|
endif
|
2001-03-05 23:26:03 +03:00
|
|
|
IS_COMPONENT = 1
|
2001-06-21 00:21:49 +04:00
|
|
|
MODULE_NAME = nsAccessibilityModule
|
2001-12-01 01:48:55 +03:00
|
|
|
REQUIRES = \
|
|
|
|
xpcom \
|
|
|
|
string \
|
|
|
|
dom \
|
2001-09-18 17:41:47 +04:00
|
|
|
$(NULL)
|
2001-03-05 23:26:03 +03:00
|
|
|
|
|
|
|
CPPSRCS = nsAccessibilityFactory.cpp
|
|
|
|
|
|
|
|
LOCAL_INCLUDES = -I$(srcdir)/../src
|
|
|
|
|
2001-03-29 18:19:10 +04:00
|
|
|
SHARED_LIBRARY_LIBS = \
|
2001-12-15 02:49:04 +03:00
|
|
|
$(DIST)/lib/$(LIB_PREFIX)accessibility_base_s.$(LIB_SUFFIX) \
|
|
|
|
$(DIST)/lib/$(LIB_PREFIX)accessibility_html_s.$(LIB_SUFFIX) \
|
2001-07-01 08:41:38 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2001-12-16 02:50:14 +03:00
|
|
|
ifdef MOZ_XUL
|
|
|
|
SHARED_LIBRARY_LIBS += $(DIST)/lib/$(LIB_PREFIX)accessibility_xul_s.$(LIB_SUFFIX)
|
|
|
|
endif
|
2001-12-01 01:48:55 +03:00
|
|
|
|
2001-07-01 08:41:38 +04:00
|
|
|
EXTRA_DSO_LIBS = \
|
|
|
|
gkconshared_s \
|
2001-12-18 12:14:29 +03:00
|
|
|
gkgfx \
|
2001-06-30 04:25:09 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXTRA_DSO_LDOPTS = \
|
2001-12-18 12:14:29 +03:00
|
|
|
$(LIBS_DIR) \
|
2001-07-01 08:41:38 +04:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
2001-12-18 12:14:29 +03:00
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
2001-06-30 04:25:09 +04:00
|
|
|
$(NULL)
|
2001-03-05 23:26:03 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|