blob: 15e9c00089e9d1a631de09c181c312e8eae32476 (
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
|
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
dist_noinst_DATA = \
README.md \
debian/copyright \
debian/netdata.conf \
debian/source/format \
debian/control.wheezy \
debian/compat \
debian/netdata.install \
debian/netdata.lintian-overrides \
debian/rules \
debian/netdata.docs \
debian/netdata.default \
debian/control \
debian/netdata.postinst.in \
debian/netdata.service \
debian/changelog \
debian/netdata.postrm \
$(NULL)
dist_noinst_SCRIPTS = \
debian/netdata.init \
nc-backend.sh \
$(NULL)
debian/changelog:
echo "netdata ($(PACKAGE_VERSION)) UNRELEASED; urgency=medium" | \
tr '_' '~' > $@
echo " * Latest release" >> $@
echo " -- Netdata Team <> `date -R`" >> $@
|