1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
inspector_files = \
"$(WebInspectorUI)/Localizations/en.lproj/localizedStrings.js" \
"$(WebInspectorUI)/UserInterface/*.html" \
"$(WebInspectorUI)/UserInterface/*.js" \
"$(WebInspectorUI)/UserInterface/*.css" \
"$(WebInspectorUI)/UserInterface/Images/gtk/*.png" \
"$(WebInspectorUI)/UserInterface/Images/gtk/*.svg" \
"$(WebInspectorUI)/UserInterface/External/CodeMirror/*.js" \
"$(WebInspectorUI)/UserInterface/External/CodeMirror/*.css"
inspector_files_dependencies = \
$(WebInspectorUI)/Localizations/en.lproj/localizedStrings.js \
$(shell ls $(WebInspectorUI)/UserInterface/*.html) \
$(shell ls $(WebInspectorUI)/UserInterface/*.js) \
$(shell ls $(WebInspectorUI)/UserInterface/*.css) \
$(shell ls $(WebInspectorUI)/UserInterface/Images/gtk/*.png) \
$(shell ls $(WebInspectorUI)/UserInterface/Images/gtk/*.svg) \
$(shell ls $(WebInspectorUI)/UserInterface/External/CodeMirror/*.js) \
$(shell ls $(WebInspectorUI)/UserInterface/External/CodeMirror/*.css)
${GENSOURCES_WEBINSPECTOR_UI}/GResourceBundle.xml: GNUmakefile \
$(inspector_files_dependencies) \
$(srcdir)/Tools/gtk/generate-inspector-gresource-manifest.py
$(AM_V_GEN)
$(AM_V_at)mkdir -p ${GENSOURCES_WEBINSPECTOR_UI}
$(AM_V_at)$(PYTHON) $(srcdir)/Tools/gtk/generate-inspector-gresource-manifest.py --output $@ $(inspector_files)
${GENSOURCES_WEBINSPECTOR_UI}/GResourceBundle.c: DerivedSources/WebInspectorUI/GResourceBundle.xml
$(AM_V_GEN)
$(AM_V_at)glib-compile-resources --generate --sourcedir=$(WebInspectorUI) \
--target=${GENSOURCES_WEBINSPECTOR_UI}/GResourceBundle.c ${GENSOURCES_WEBINSPECTOR_UI}/GResourceBundle.xml
BUILT_SOURCES += \
DerivedSources/WebInspectorUI/GResourceBundle.xml
webcore_built_sources += \
DerivedSources/WebInspectorUI/GResourceBundle.c
EXTRA_DIST += \
$(WebInspectorUI)/Localizations/en.lproj/localizedStrings.js \
$(shell ls $(WebInspectorUI)/UserInterface/*.html) \
$(shell ls $(WebInspectorUI)/UserInterface/*.js) \
$(shell ls $(WebInspectorUI)/UserInterface/*.css) \
$(shell ls $(WebInspectorUI)/UserInterface/Images/gtk/*.png) \
$(shell ls $(WebInspectorUI)/UserInterface/Images/gtk/*.svg) \
$(shell ls $(WebInspectorUI)/UserInterface/External/CodeMirror/*.js) \
$(shell ls $(WebInspectorUI)/UserInterface/External/CodeMirror/*.css)
|