]> arthur.barton.de Git - netdata.git/blob - web/Makefile.am
Merge pull request #892 from glensc/patch-1
[netdata.git] / web / Makefile.am
1 #
2 # Copyright (C) 2015 Alon Bar-Lev <alon.barlev@gmail.com>
3 #
4 MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
5
6 dist_web_DATA = \
7         demo.html \
8         demo2.html \
9         demosites.html \
10         dashboard.html \
11         dashboard.js \
12         dashboard.css \
13         dashboard.slate.css \
14         favicon.ico \
15         index.html \
16         netdata-swagger.yaml \
17         netdata-swagger.json \
18         robots.txt \
19         registry.html \
20         tv.html \
21         version.txt \
22         $(NULL)
23
24 webolddir=$(webdir)/old
25 dist_webold_DATA = \
26         old/datasource.html \
27         old/index.html \
28         old/index.js \
29         old/netdata.js \
30         old/theme.css \
31         $(NULL)
32
33 weblibdir=$(webdir)/lib
34 dist_weblib_DATA = \
35         lib/dygraph-combined.js \
36         lib/dygraph-smooth-plotter.js \
37         lib/jquery-1.12.0.min.js \
38         lib/jquery.peity.min.js \
39         lib/jquery.sparkline.min.js \
40         lib/morris.min.js \
41         lib/raphael-min.js \
42         lib/jquery.easypiechart.min.js \
43         lib/jquery.nanoscroller.min.js \
44         lib/bootstrap.min.js \
45         lib/ElementQueries.js \
46         lib/ResizeSensor.js \
47         lib/bootstrap-toggle.min.js \
48         lib/c3.min.js \
49         lib/d3.min.js \
50         lib/gauge.min.js \
51         $(NULL)
52
53 webcssdir=$(webdir)/css
54 dist_webcss_DATA = \
55         css/morris.css \
56         css/bootstrap.min.css \
57         css/bootstrap-theme.min.css \
58         css/bootstrap.slate.min.css \
59         css/font-awesome.min.css \
60         css/bootstrap-toggle.min.css \
61         css/c3.min.css \
62         $(NULL)
63
64 webfontsdir=$(webdir)/fonts
65 dist_webfonts_DATA = \
66         fonts/glyphicons-halflings-regular.eot \
67         fonts/glyphicons-halflings-regular.svg \
68         fonts/glyphicons-halflings-regular.ttf \
69         fonts/glyphicons-halflings-regular.woff \
70         fonts/glyphicons-halflings-regular.woff2 \
71         fonts/FontAwesome.otf \
72         fonts/fontawesome-webfont.eot \
73         fonts/fontawesome-webfont.svg \
74         fonts/fontawesome-webfont.ttf \
75         fonts/fontawesome-webfont.woff \
76         fonts/fontawesome-webfont.woff2 \
77         $(NULL)
78
79 webimagesdir=$(webdir)/images
80 dist_webimages_DATA = \
81         images/alert-128-orange.png \
82         images/alert-128-red.png \
83         images/alert-multi-size-orange.ico \
84         images/alert-multi-size-red.ico \
85         images/animated.gif \
86         images/check-mark-2-128-green.png \
87         images/check-mark-2-multi-size-green.ico \
88         images/post.png \
89         images/seo-performance-16.png \
90         images/seo-performance-24.png \
91         images/seo-performance-32.png \
92         images/seo-performance-48.png \
93         images/seo-performance-64.png \
94         images/seo-performance-72.png \
95         images/seo-performance-114.png \
96         images/seo-performance-128.png \
97         images/seo-performance-256.png \
98         images/seo-performance-512.png \
99         images/seo-performance-multi-size.ico \
100         images/seo-performance-multi-size.icns \
101         $(NULL)
102
103
104 webwellknowndir=$(webdir)/.well-known
105 dist_webwellknown_DATA = \
106         $(NULL)
107
108 webdntdir=$(webdir)/.well-known/dnt
109 dist_webdnt_DATA = \
110         .well-known/dnt/cookies \
111         $(NULL)
112
113 version.txt:
114         if test -d "$(top_srcdir)/.git"; then \
115                 git --git-dir="$(top_srcdir)/.git" log -n 1 --format=%H; \
116         fi > $@.tmp
117         test -s $@.tmp || echo 0 > $@.tmp
118         mv $@.tmp $@
119
120 .PHONY: version.txt