mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
60 lines
1.5 KiB
Makefile
60 lines
1.5 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
LIBRARY_NAME = html5p_s
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
CPPSRCS = \
|
|
nsHtml5Atoms.cpp \
|
|
nsHtml5Atom.cpp \
|
|
nsHtml5AtomTable.cpp \
|
|
nsHtml5Parser.cpp \
|
|
nsHtml5AttributeName.cpp \
|
|
nsHtml5ElementName.cpp \
|
|
nsHtml5HtmlAttributes.cpp \
|
|
nsHtml5StackNode.cpp \
|
|
nsHtml5UTF16Buffer.cpp \
|
|
nsHtml5DependentUTF16Buffer.cpp \
|
|
nsHtml5OwningUTF16Buffer.cpp \
|
|
nsHtml5NamedCharacters.cpp \
|
|
nsHtml5NamedCharactersAccel.cpp \
|
|
nsHtml5Tokenizer.cpp \
|
|
nsHtml5TreeBuilder.cpp \
|
|
nsHtml5Portability.cpp \
|
|
nsHtml5Module.cpp \
|
|
nsHtml5ReleasableAttributeName.cpp \
|
|
nsHtml5ReleasableElementName.cpp \
|
|
nsHtml5MetaScanner.cpp \
|
|
nsHtml5TreeOperation.cpp \
|
|
nsHtml5TreeOpStage.cpp \
|
|
nsHtml5StateSnapshot.cpp \
|
|
nsHtml5TreeOpExecutor.cpp \
|
|
nsHtml5StreamParser.cpp \
|
|
nsHtml5Speculation.cpp \
|
|
nsHtml5SpeculativeLoad.cpp \
|
|
nsHtml5SVGLoadDispatcher.cpp \
|
|
nsHtml5Highlighter.cpp \
|
|
nsHtml5PlainTextUtils.cpp \
|
|
nsHtml5ViewSourceUtils.cpp \
|
|
nsHtml5StringParser.cpp \
|
|
nsParserUtils.cpp \
|
|
$(NULL)
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
INCLUDES += \
|
|
-I$(srcdir)/../../content/base/src \
|
|
$(NULL)
|
|
|
|
#DEFINES += -DENABLE_VOID_MENUITEM
|