File: GNUmakefile.am

package info (click to toggle)
webkitgtk 2.4.9-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 120,620 kB
  • ctags: 192,221
  • sloc: cpp: 1,034,319; ansic: 19,255; sh: 11,153; perl: 10,747; ruby: 8,592; asm: 4,378; python: 4,132; yacc: 2,072; lex: 350; makefile: 215; xml: 63
file content (47 lines) | stat: -rw-r--r-- 2,271 bytes parent folder | download | duplicates (2)
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)