mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
47 lines
916 B
Makefile
47 lines
916 B
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
|
|
|
|
PARSER_SRCS = \
|
|
header.py \
|
|
typelib.py \
|
|
xpidl.py \
|
|
$(NULL)
|
|
|
|
ifndef MOZ_SYSTEM_PLY
|
|
PLY_PROGS = \
|
|
$(topsrcdir)/other-licenses/ply/ply/lex.py \
|
|
$(topsrcdir)/other-licenses/ply/ply/yacc.py \
|
|
$(NULL)
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# Generate the PLY lexer and parser.
|
|
export:: $(PARSER_SRCS) $(PLY_PROGS)
|
|
$(PYTHON_PATH) \
|
|
$(PLY_INCLUDE) \
|
|
$(srcdir)/header.py --cachedir=. --regen
|
|
|
|
check::
|
|
$(PYTHON_PATH) \
|
|
$(PLY_INCLUDE) \
|
|
-I. \
|
|
$(srcdir)/runtests.py
|
|
|
|
GARBAGE += \
|
|
xpidllex.py \
|
|
xpidllex.pyc \
|
|
xpidlyacc.py \
|
|
xpidlyacc.pyc \
|
|
xpidl_debug \
|
|
$(NULL)
|