2001-02-14 23:51:33 +03:00
|
|
|
#!gmake
|
|
|
|
#
|
|
|
|
# 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-02-14 23:51:33 +03:00
|
|
|
|
|
|
|
DEPTH=..\..
|
|
|
|
MODULE=accessibility
|
2001-12-01 01:48:55 +03:00
|
|
|
REQUIRES = \
|
|
|
|
xpcom \
|
|
|
|
string \
|
|
|
|
dom \
|
|
|
|
$(NULL)
|
2001-06-21 00:21:49 +04:00
|
|
|
LIBRARY_NAME=accessibility
|
|
|
|
MODULE_NAME=nsAccessibilityModule
|
2001-02-14 23:51:33 +03:00
|
|
|
|
2001-12-01 01:48:55 +03:00
|
|
|
include <$(DEPTH)\config\config.mak>
|
|
|
|
|
2001-02-14 23:51:33 +03:00
|
|
|
CPP_OBJS=\
|
2001-12-01 01:48:55 +03:00
|
|
|
.\$(OBJDIR)\nsAccessibilityFactory.obj \
|
2001-06-30 04:25:09 +04:00
|
|
|
$(NULL)
|
2001-02-14 23:51:33 +03:00
|
|
|
|
|
|
|
LINCS = $(LINCS) -I..\src # for implementation headers
|
|
|
|
|
2001-06-30 05:33:37 +04:00
|
|
|
SUB_LIBRARIES=\
|
2001-12-01 01:48:55 +03:00
|
|
|
$(DIST)\lib\accessibility_base_s.lib \
|
|
|
|
$(DIST)\lib\accessibility_html_s.lib \
|
2001-12-16 02:50:14 +03:00
|
|
|
!ifdef MOZ_XUL
|
2001-12-01 01:48:55 +03:00
|
|
|
$(DIST)\lib\accessibility_xul_s.lib \
|
2001-12-16 02:50:14 +03:00
|
|
|
!endif
|
2001-06-30 04:25:09 +04:00
|
|
|
$(NULL)
|
2001-06-21 00:21:49 +04:00
|
|
|
|
2001-02-14 23:51:33 +03:00
|
|
|
LLIBS=\
|
2001-12-01 01:48:55 +03:00
|
|
|
$(DIST)\lib\xpcom.lib \
|
|
|
|
$(DIST)\lib\gkgfx.lib \
|
|
|
|
$(DIST)\lib\contentshared_s.lib \
|
|
|
|
$(LIBNSPR) \
|
2001-06-30 04:25:09 +04:00
|
|
|
$(NULL)
|
2001-02-14 23:51:33 +03:00
|
|
|
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|