3
# Copyright (C) 2008 Sun Microsystems, Inc.
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; version 2 of the License.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
LINT_COMMAND=python ${top_srcdir}/extra/cpplint.py --filter=-whitespace,-runtime,-readability,+legal,-build,+build/header_guard,+build/include_config,+build/namespaces
20
# make a dep file from a cc by linting
21
SUFFIXES += .cc.linted .h.linted
23
@test -d `dirname $@` || mkdir -p `dirname $@`
24
$(LINT_COMMAND) --deps $@ $<
26
# make a dep file from a h by linting
28
@test -d `dirname $@` || mkdir -p `dirname $@`
29
$(LINT_COMMAND) --deps $@ $<
31
clean-local: cleanlints
34
installcheck-local: linted ${srcdir}/config/lint-rules.am
38
# Build the things to lint dynamically
39
${srcdir}/config/lint-rules.am: lint-rules-gen
40
@# Make make think it did something so it sees the file changed.
42
# This is a ChangeProtected output
44
srcdir=${srcdir} ${top_srcdir}/config/make-lint.py
46
.PHONY: cleanlints linted lint-rules-gen
49
include config/lint-rules.am