mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
5b9d4c32a3
There is only 1 caller to AccEventGen.py in the tree. We don't need optional arguments. Convert them to positional. Since the arguments are no longer optional, branches related to their presence have been removed. --HG-- extra : rebase_source : 35d51852dee031011ad9f079f3aba56b67948d7e
33 lines
950 B
Makefile
33 lines
950 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/.
|
|
|
|
EXTRA_MDDEPEND_FILES = xpcAccEvents.pp
|
|
|
|
INSTALL_TARGETS += xpcaccevents
|
|
xpcaccevents_FILES := xpcAccEvents.h
|
|
xpcaccevents_DEST = $(DIST)/include
|
|
xpcaccevents_TARGET := export
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
xpcAccEvents.cpp: $(srcdir)/AccEvents.conf \
|
|
$(srcdir)/AccEventGen.py \
|
|
$(LIBXUL_DIST)/sdk/bin/header.py \
|
|
$(LIBXUL_DIST)/sdk/bin/xpidl.py
|
|
$(PYTHON) $(topsrcdir)/config/pythonpath.py \
|
|
-I$(LIBXUL_DIST)/sdk/bin \
|
|
$(srcdir)/AccEventGen.py \
|
|
-I $(DEPTH)/dist/idl \
|
|
$(srcdir)/AccEvents.conf \
|
|
xpcAccEvents.h \
|
|
xpcAccEvents.cpp \
|
|
$(MDDEPDIR)/xpcAccEvents.pp
|
|
|
|
xpcAccEvents.h: xpcAccEvents.cpp
|
|
|
|
GARBAGE += \
|
|
xpcAccEvents.cpp \
|
|
xpcAccEvents.h \
|
|
$(null)
|