1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/xpconnect/src/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,83 @@ 1.4 +# 1.5 +# This Source Code Form is subject to the terms of the Mozilla Public 1.6 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + 1.9 +EXTRA_MDDEPEND_FILES = dom_qsgen.pp event_impl_gen.pp 1.10 + 1.11 +INSTALL_TARGETS += extra_export_files 1.12 +extra_export_files_FILES := \ 1.13 + GeneratedEventClasses.h \ 1.14 + GeneratedEvents.h \ 1.15 + $(NULL) 1.16 +extra_export_files_DEST = $(DIST)/include 1.17 +extra_export_files_TARGET := export 1.18 + 1.19 +include $(topsrcdir)/config/rules.mk 1.20 + 1.21 +dom_quickstubs.h: dom_quickstubs.cpp 1.22 + 1.23 +dom_quickstubs.cpp: $(srcdir)/dom_quickstubs.qsconf \ 1.24 + $(srcdir)/qsgen.py \ 1.25 + $(LIBXUL_DIST)/sdk/bin/header.py \ 1.26 + $(LIBXUL_DIST)/sdk/bin/xpidl.py 1.27 + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ 1.28 + $(PLY_INCLUDE) \ 1.29 + -I$(LIBXUL_DIST)/sdk/bin \ 1.30 + $(srcdir)/qsgen.py \ 1.31 + --idlpath=$(DEPTH)/dist/idl \ 1.32 + --header-output dom_quickstubs.h \ 1.33 + --stub-output dom_quickstubs.cpp \ 1.34 + --makedepend-output $(MDDEPDIR)/dom_qsgen.pp \ 1.35 + $(ENABLE_TRACEABLE_FLAGS) \ 1.36 + $(srcdir)/dom_quickstubs.qsconf 1.37 + 1.38 +event_impl_gen.conf : $(srcdir)/event_impl_gen.conf.in 1.39 + $(call py_action,preprocessor,$(DEFINES) $(ACDEFINES) $^ -o event_impl_gen.conf) 1.40 + 1.41 +GeneratedEvents.h: event_impl_gen.conf \ 1.42 + $(srcdir)/event_impl_gen.py \ 1.43 + $(LIBXUL_DIST)/sdk/bin/header.py \ 1.44 + $(LIBXUL_DIST)/sdk/bin/xpidl.py 1.45 + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ 1.46 + $(PLY_INCLUDE) \ 1.47 + -I$(LIBXUL_DIST)/sdk/bin \ 1.48 + $(srcdir)/event_impl_gen.py \ 1.49 + -I $(DEPTH)/dist/idl \ 1.50 + --header-output GeneratedEvents.h \ 1.51 + event_impl_gen.conf 1.52 + 1.53 +GeneratedEventClasses.h: GeneratedEvents.cpp 1.54 + 1.55 +GeneratedEvents.cpp: GeneratedEvents.h \ 1.56 + event_impl_gen.conf \ 1.57 + $(srcdir)/event_impl_gen.py \ 1.58 + $(LIBXUL_DIST)/sdk/bin/header.py \ 1.59 + $(LIBXUL_DIST)/sdk/bin/xpidl.py 1.60 + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ 1.61 + $(PLY_INCLUDE) \ 1.62 + -I$(LIBXUL_DIST)/sdk/bin \ 1.63 + $(srcdir)/event_impl_gen.py \ 1.64 + -I $(DEPTH)/dist/idl \ 1.65 + --class-declarations GeneratedEventClasses.h \ 1.66 + --stub-output GeneratedEvents.cpp \ 1.67 + --makedepend-output $(MDDEPDIR)/event_impl_gen.pp \ 1.68 + event_impl_gen.conf 1.69 + 1.70 +GeneratedEvents-webidl: event_impl_gen.conf 1.71 + $(PYTHON) $(topsrcdir)/config/pythonpath.py \ 1.72 + $(PLY_INCLUDE) \ 1.73 + -I$(LIBXUL_DIST)/sdk/bin \ 1.74 + $(srcdir)/event_impl_gen.py \ 1.75 + -I $(DEPTH)/dist/idl \ 1.76 + --webidltarget=$(top_srcdir)/dom/webidl \ 1.77 + event_impl_gen.conf 1.78 + 1.79 +GARBAGE += \ 1.80 + event_impl_gen.conf \ 1.81 + xpidl_debug \ 1.82 + $(MDDEPDIR)/dom_qsgen.pp \ 1.83 + $(MDDEPDIR)/dombindingsgen.pp \ 1.84 + $(MDDEPDIR)/event_impl_gen.pp \ 1.85 + $(wildcard $(topsrcdir)/other-licenses/ply/ply/*.pyc) \ 1.86 + $(NULL)