diff -r 000000000000 -r 6474c204b198 js/xpconnect/src/Makefile.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/js/xpconnect/src/Makefile.in Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,83 @@ +# +# 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 = dom_qsgen.pp event_impl_gen.pp + +INSTALL_TARGETS += extra_export_files +extra_export_files_FILES := \ + GeneratedEventClasses.h \ + GeneratedEvents.h \ + $(NULL) +extra_export_files_DEST = $(DIST)/include +extra_export_files_TARGET := export + +include $(topsrcdir)/config/rules.mk + +dom_quickstubs.h: dom_quickstubs.cpp + +dom_quickstubs.cpp: $(srcdir)/dom_quickstubs.qsconf \ + $(srcdir)/qsgen.py \ + $(LIBXUL_DIST)/sdk/bin/header.py \ + $(LIBXUL_DIST)/sdk/bin/xpidl.py + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ + $(PLY_INCLUDE) \ + -I$(LIBXUL_DIST)/sdk/bin \ + $(srcdir)/qsgen.py \ + --idlpath=$(DEPTH)/dist/idl \ + --header-output dom_quickstubs.h \ + --stub-output dom_quickstubs.cpp \ + --makedepend-output $(MDDEPDIR)/dom_qsgen.pp \ + $(ENABLE_TRACEABLE_FLAGS) \ + $(srcdir)/dom_quickstubs.qsconf + +event_impl_gen.conf : $(srcdir)/event_impl_gen.conf.in + $(call py_action,preprocessor,$(DEFINES) $(ACDEFINES) $^ -o event_impl_gen.conf) + +GeneratedEvents.h: event_impl_gen.conf \ + $(srcdir)/event_impl_gen.py \ + $(LIBXUL_DIST)/sdk/bin/header.py \ + $(LIBXUL_DIST)/sdk/bin/xpidl.py + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ + $(PLY_INCLUDE) \ + -I$(LIBXUL_DIST)/sdk/bin \ + $(srcdir)/event_impl_gen.py \ + -I $(DEPTH)/dist/idl \ + --header-output GeneratedEvents.h \ + event_impl_gen.conf + +GeneratedEventClasses.h: GeneratedEvents.cpp + +GeneratedEvents.cpp: GeneratedEvents.h \ + event_impl_gen.conf \ + $(srcdir)/event_impl_gen.py \ + $(LIBXUL_DIST)/sdk/bin/header.py \ + $(LIBXUL_DIST)/sdk/bin/xpidl.py + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ + $(PLY_INCLUDE) \ + -I$(LIBXUL_DIST)/sdk/bin \ + $(srcdir)/event_impl_gen.py \ + -I $(DEPTH)/dist/idl \ + --class-declarations GeneratedEventClasses.h \ + --stub-output GeneratedEvents.cpp \ + --makedepend-output $(MDDEPDIR)/event_impl_gen.pp \ + event_impl_gen.conf + +GeneratedEvents-webidl: event_impl_gen.conf + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ + $(PLY_INCLUDE) \ + -I$(LIBXUL_DIST)/sdk/bin \ + $(srcdir)/event_impl_gen.py \ + -I $(DEPTH)/dist/idl \ + --webidltarget=$(top_srcdir)/dom/webidl \ + event_impl_gen.conf + +GARBAGE += \ + event_impl_gen.conf \ + xpidl_debug \ + $(MDDEPDIR)/dom_qsgen.pp \ + $(MDDEPDIR)/dombindingsgen.pp \ + $(MDDEPDIR)/event_impl_gen.pp \ + $(wildcard $(topsrcdir)/other-licenses/ply/ply/*.pyc) \ + $(NULL)