## 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)