mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
f0de749c69
Move Python code into an xpidl subdirectory, and include a setup.py to allow inclusion from pip install or requirements files. Change build directory variables appropriately. --HG-- rename : xpcom/idl-parser/Makefile.in => xpcom/idl-parser/xpidl/Makefile.in rename : xpcom/idl-parser/header.py => xpcom/idl-parser/xpidl/header.py rename : xpcom/idl-parser/moz.build => xpcom/idl-parser/xpidl/moz.build rename : xpcom/idl-parser/runtests.py => xpcom/idl-parser/xpidl/runtests.py rename : xpcom/idl-parser/typelib.py => xpcom/idl-parser/xpidl/typelib.py rename : xpcom/idl-parser/xpidl.py => xpcom/idl-parser/xpidl/xpidl.py
14 lines
550 B
Makefile
14 lines
550 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/.
|
|
|
|
export::
|
|
ifndef LIBXUL_SDK
|
|
$(call SUBMAKE,xpidl-parser,$(DEPTH)/xpcom/idl-parser/xpidl)
|
|
endif
|
|
$(call py_action,process_install_manifest,$(DIST)/idl $(DEPTH)/_build_manifests/install/dist_idl)
|
|
$(call SUBMAKE,xpidl,$(DEPTH)/config/makefiles/xpidl)
|
|
|
|
clean clobber realclean clobber_all distclean::
|
|
$(call SUBMAKE,$@,$(DEPTH)/config/makefiles/xpidl)
|