blob: 323e925e6b883a978ab28e0d9a8abaecac357072 (
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
|
## Copyright 2012, 2013 Intel Corporation All Rights Reserved.
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Lesser General Public
## License as published by the Free Software Foundation;
## version 2.1 of the License.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public
## License along with this library; if not, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor,
## Boston, MA 02110-1301 USA
SUBDIRS = doc etc include lib plugins src tests
EXTRA_DIST = COPYING.LESSER Doxyfile settingsd.dox settingsd.org
ACLOCAL_AMFLAGS = -I m4
# Doxygen stuff
include $(top_srcdir)/aminclude.am
MOSTLYCLEANFILES = $(DX_CLEANFILES)
# Copyright Year Consistency Check
#
# This check assumes that all copyright statements have the same years
# listed.
distcheck-hook:
@test `$(GREP) --recursive --binary-files=without-match Copyright.*Intel * \
| sed -e 's/^.*Copyright \(([Cc]).\)*\(.*\).* Intel.*$$/\2/g' \
-e 's/,$$//g' | sort -u | wc -l` -ne 1 \
|| (echo ======================================================; \
echo DIST ERROR: Copyright years in files are inconsistent!; \
echo ======================================================; \
exit 1)
|