2000-04-01 14:38:51 +00: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 = layout
|
2000-07-02 18:44:42 +00:00
|
|
|
LIBRARY_NAME = gksvgbase_s
|
2001-09-18 13:41:47 +00:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
content \
|
|
|
|
gfx \
|
|
|
|
widget \
|
|
|
|
dom \
|
|
|
|
locale \
|
|
|
|
view \
|
|
|
|
pref \
|
2001-09-29 21:41:30 +00:00
|
|
|
necko \
|
2001-09-18 13:41:47 +00:00
|
|
|
$(NULL)
|
2000-04-01 14:38:51 +00:00
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
nsSVGContainerFrame.cpp \
|
|
|
|
nsPolygonFrame.cpp \
|
2000-05-05 04:32:50 +00:00
|
|
|
nsPolylineFrame.cpp \
|
2000-05-15 20:34:00 +00:00
|
|
|
nsSVGPathFrame.cpp \
|
2000-04-01 14:38:51 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
|
|
|
# we don't want the shared lib, but we want to force the creation of a static lib.
|
2001-06-18 22:10:38 +00:00
|
|
|
FORCE_STATIC_LIB = 1
|
2000-04-01 14:38:51 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
DEFINES += -D_IMPL_NS_HTML
|
|
|
|
|
|
|
|
LOCAL_INCLUDES = \
|
|
|
|
-I$(srcdir)/../../../base/src \
|
|
|
|
-I$(srcdir)/../../../html/table/src \
|
|
|
|
-I$(srcdir)/../../../html/style/src \
|
|
|
|
-I$(srcdir)/../../../html/base/src \
|
|
|
|
-I$(srcdir)/../../../html/forms/src \
|
|
|
|
-I$(srcdir)/../../content/src \
|
|
|
|
-I$(srcdir)/../../../html/content/src \
|
|
|
|
-I$(srcdir)/../../../xml/content/src \
|
|
|
|
-I$(srcdir)/../../../base/public \
|
|
|
|
$(NULL)
|
|
|
|
|