blob: ac9228744c240b46fc975f980d50283c2ae42275 (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#
# Copyright (C) 2015 Alon Bar-Lev <alon.barlev@gmail.com>
#
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
dist_web_DATA = \
demo.html \
demo2.html \
demosites.html \
demosites2.html \
dashboard.html \
dashboard.js \
dashboard_info.js \
dashboard_info_custom_example.js \
dashboard.css \
dashboard.slate.css \
favicon.ico \
goto-host-from-alarm.html \
index.html \
infographic.html \
netdata-swagger.yaml \
netdata-swagger.json \
robots.txt \
refresh-badges.js \
registry.html \
sitemap.xml \
tv.html \
version.txt \
$(NULL)
webolddir=$(webdir)/old
dist_webold_DATA = \
old/datasource.html \
old/index.html \
old/index.js \
old/netdata.js \
old/theme.css \
$(NULL)
weblibdir=$(webdir)/lib
dist_weblib_DATA = \
lib/bootstrap-3.3.7.min.js \
lib/bootstrap-slider-10.0.0.min.js \
lib/bootstrap-table-1.11.0.min.js \
lib/bootstrap-table-export-1.11.0.min.js \
lib/bootstrap-toggle-2.2.2.min.js \
lib/clipboard-polyfill-be05dad.js \
lib/c3-0.4.18.min.js \
lib/d3-4.12.2.min.js \
lib/d3pie-0.2.1-netdata-3.js \
lib/dygraph-c91c859.min.js \
lib/dygraph-smooth-plotter-c91c859.js \
lib/fontawesome-all-5.0.1.min.js \
lib/gauge-1.3.2.min.js \
lib/jquery-2.2.4.min.js \
lib/jquery.easypiechart-97b5824.min.js \
lib/jquery.peity-3.2.0.min.js \
lib/jquery.sparkline-2.1.2.min.js \
lib/lz-string-1.4.4.min.js \
lib/morris-0.5.1.min.js \
lib/pako-1.0.6.min.js \
lib/perfect-scrollbar-0.6.15.min.js \
lib/raphael-2.2.4-min.js \
lib/tableExport-1.6.0.min.js \
$(NULL)
webcssdir=$(webdir)/css
dist_webcss_DATA = \
css/morris-0.5.1.css \
css/bootstrap-3.3.7.css \
css/bootstrap-theme-3.3.7.min.css \
css/bootstrap-slate-flat-3.3.7.css \
css/bootstrap-slider-10.0.0.min.css \
css/bootstrap-toggle-2.2.2.min.css \
css/c3-0.4.18.min.css \
$(NULL)
webfontsdir=$(webdir)/fonts
dist_webfonts_DATA = \
fonts/glyphicons-halflings-regular.eot \
fonts/glyphicons-halflings-regular.svg \
fonts/glyphicons-halflings-regular.ttf \
fonts/glyphicons-halflings-regular.woff \
fonts/glyphicons-halflings-regular.woff2 \
$(NULL)
webimagesdir=$(webdir)/images
dist_webimages_DATA = \
images/alert-128-orange.png \
images/alert-128-red.png \
images/alert-multi-size-orange.ico \
images/alert-multi-size-red.ico \
images/animated.gif \
images/check-mark-2-128-green.png \
images/check-mark-2-multi-size-green.ico \
images/post.png \
images/seo-performance-16.png \
images/seo-performance-24.png \
images/seo-performance-32.png \
images/seo-performance-48.png \
images/seo-performance-64.png \
images/seo-performance-72.png \
images/seo-performance-114.png \
images/seo-performance-128.png \
images/seo-performance-256.png \
images/seo-performance-512.png \
images/seo-performance-multi-size.ico \
images/seo-performance-multi-size.icns \
$(NULL)
webwellknowndir=$(webdir)/.well-known
dist_webwellknown_DATA = \
$(NULL)
webdntdir=$(webdir)/.well-known/dnt
dist_webdnt_DATA = \
.well-known/dnt/cookies \
$(NULL)
version.txt:
if test -d "$(top_srcdir)/.git"; then \
git --git-dir="$(top_srcdir)/.git" log -n 1 --format=%H; \
fi > $@.tmp
test -s $@.tmp || echo 0 > $@.tmp
mv $@.tmp $@
.PHONY: version.txt
|