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.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
|
|
|
|
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
|
2001-03-29 07:33:55 +04:00
|
|
|
SHORT_LIBNAME = access
|
2001-03-05 23:26:03 +03:00
|
|
|
IS_COMPONENT = 1
|
2001-06-21 00:21:49 +04:00
|
|
|
MODULE_NAME = nsAccessibilityModule
|
2001-03-29 08:43:09 +04:00
|
|
|
REQUIRES = xpcom string dom
|
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-06-30 04:25:09 +04:00
|
|
|
$(DIST)/lib/libaccessibility_s.$(LIB_SUFFIX) \
|
2001-07-01 08:41:38 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXTRA_DSO_LIBS = \
|
|
|
|
gkconshared_s \
|
2001-06-30 04:25:09 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXTRA_DSO_LDOPTS = \
|
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
2001-08-12 15:00:53 +04:00
|
|
|
-L$(DIST)/lib \
|
2001-07-01 08:41:38 +04:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
2001-06-30 04:25:09 +04:00
|
|
|
-lgkgfx \
|
|
|
|
$(NULL)
|
2001-03-05 23:26:03 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|