mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
78 lines
2.1 KiB
Makefile
78 lines
2.1 KiB
Makefile
#!nmake
|
|
#
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
#
|
|
# 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 Crocodile Clips Ltd code.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# Crocodile Clips Ltd. Portions created by Crocodile Clips are
|
|
# Copyright (C) 2001 Crocodile Clips Ltd. All
|
|
# Rights Reserved.
|
|
|
|
|
|
DEPTH = ../../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = dom
|
|
XPIDL_MODULE = dom_svg
|
|
|
|
|
|
XPIDLSRCS = \
|
|
nsIDOMSVGAnimatedEnum.idl \
|
|
nsIDOMSVGAnimatedLength.idl \
|
|
nsIDOMSVGAnimatedLengthList.idl \
|
|
nsIDOMSVGAnimatedNumberList.idl \
|
|
nsIDOMSVGAnimatedPathData.idl \
|
|
nsIDOMSVGAnimatedPoints.idl \
|
|
nsIDOMSVGAnimPresAspRatio.idl \
|
|
nsIDOMSVGAnimatedRect.idl \
|
|
nsIDOMSVGAnimTransformList.idl \
|
|
nsIDOMSVGCircleElement.idl \
|
|
nsIDOMSVGDocument.idl \
|
|
nsIDOMSVGElement.idl \
|
|
nsIDOMSVGEllipseElement.idl \
|
|
nsIDOMSVGFitToViewBox.idl \
|
|
nsIDOMSVGForeignObjectElem.idl \
|
|
nsIDOMSVGGElement.idl \
|
|
nsIDOMSVGLength.idl \
|
|
nsIDOMSVGLengthList.idl \
|
|
nsIDOMSVGLineElement.idl \
|
|
nsIDOMSVGLocatable.idl \
|
|
nsIDOMSVGMatrix.idl \
|
|
nsIDOMSVGNumber.idl \
|
|
nsIDOMSVGNumberList.idl \
|
|
nsIDOMSVGPathElement.idl \
|
|
nsIDOMSVGPathSeg.idl \
|
|
nsIDOMSVGPathSegList.idl \
|
|
nsIDOMSVGPoint.idl \
|
|
nsIDOMSVGPointList.idl \
|
|
nsIDOMSVGPolygonElement.idl \
|
|
nsIDOMSVGPolylineElement.idl \
|
|
nsIDOMSVGPresAspectRatio.idl \
|
|
nsIDOMSVGRect.idl \
|
|
nsIDOMSVGRectElement.idl \
|
|
nsIDOMSVGSVGElement.idl \
|
|
nsIDOMSVGStylable.idl \
|
|
nsIDOMSVGTextContentElement.idl \
|
|
nsIDOMSVGTextElement.idl \
|
|
nsIDOMSVGTextPositionElem.idl \
|
|
nsIDOMSVGTransform.idl \
|
|
nsIDOMSVGTransformList.idl \
|
|
nsIDOMSVGTransformable.idl \
|
|
nsIDOMSVGTSpanElement.idl \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|