gecko-dev/layout/build/Makefile.in

102 строки
2.3 KiB
Makefile
Исходник Обычный вид История

1998-10-28 06:53:57 +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/
1998-10-28 06:53:57 +03:00
#
# 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.
1998-10-28 06:53:57 +03:00
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
1998-10-28 06:53:57 +03:00
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
1998-10-28 06:53:57 +03:00
DEPTH = ../..
1998-10-28 06:53:57 +03:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
1999-10-05 18:50:06 +04:00
MODULE = layout
LIBRARY_NAME = raptorhtml
IS_COMPONENT = 1
1998-10-28 06:53:57 +03:00
REQUIRES = xpcom raptor dom js
1998-10-28 06:53:57 +03:00
CPPSRCS = \
nsLayoutDLF.cpp \
nsLayoutFactory.cpp \
1999-10-01 01:14:14 +04:00
nsLayoutModule.cpp \
$(NULL)
1999-02-02 20:40:37 +03:00
ifndef MKSHLIB_FORCE_ALL
CPPSRCS += dlldeps.cpp
1999-02-02 20:40:37 +03:00
endif
1998-10-28 06:53:57 +03:00
EXPORTS = nsLayoutCID.h
SHARED_LIBRARY_LIBS = \
$(DIST)/lib/libraptorevents_s.a \
$(DIST)/lib/libraptorhtmlbase_s.a \
$(DIST)/lib/libnglhtmlcon_s.a \
$(DIST)/lib/libraptorhtmldoc_s.a \
$(DIST)/lib/libraptorhtmlforms_s.a \
$(DIST)/lib/libraptorhtmlstyle_s.a \
$(DIST)/lib/libraptorhtmltable_s.a \
$(DIST)/lib/libraptorxmlcontent_s.a \
$(DIST)/lib/libraptorxmldoc_s.a \
$(DIST)/lib/libraptorxulcontent_s.a \
$(DIST)/lib/libraptorxulbase_s.a \
$(DIST)/lib/libraptorlayout_s.a \
$(NULL)
1999-02-02 20:40:37 +03:00
ifdef MOZ_PERF
SHARED_LIBRARY_LIBS += \
$(DIST)/lib/libmozutil_s.a \
$(NULL)
endif
1999-10-12 08:47:55 +04:00
ifdef MOZ_MATHML
SHARED_LIBRARY_LIBS += \
$(DIST)/lib/libraptormathmlcontent_s.a \
$(DIST)/lib/libraptormathmlbase_s.a \
$(NSNULL)
endif
EXTRA_DSO_LDOPTS = \
$(MKSHLIB_FORCE_ALL) \
$(SHARED_LIBRARY_LIBS) \
$(MKSHLIB_UNFORCE_ALL) \
1999-09-15 06:15:11 +04:00
$(MOZ_TIMER_LIBS) \
-L$(DIST)/bin \
1999-09-14 05:02:20 +04:00
$(NSPR_LIBS) \
-lxpcom \
-lraptorgfx \
-ljsdom \
1999-09-14 05:02:20 +04:00
-lmozjs \
$(NULL)
1998-10-28 06:53:57 +03:00
include $(topsrcdir)/config/rules.mk
1999-02-02 20:40:37 +03:00
DEFINES += -D_IMPL_NS_HTML
1999-10-01 01:14:14 +04:00
INCLUDES += -I$(srcdir)/../html/base/src \
-I$(srcdir)/../xul/content/src
1999-10-02 15:01:41 +04:00
ifdef MOZ_MATHML
INCLUDES += -I$(srcdir)/../mathml/content/src
endif
$(LIBRARY) $(SHARED_LIBRARY): $(SHARED_LIBRARY_LIBS) Makefile