~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/lint-source.am

  • Committer: Monty Taylor
  • Date: 2010-12-26 01:32:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226013211-c1tx52h7evovmijg
fixed dict and eval.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim:ft=automake
 
2
#
 
3
#  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
#
 
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.
 
8
#
 
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.
 
13
#
 
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
 
17
 
 
18
LINT_COMMAND=python ${top_srcdir}/extra/cpplint.py  --filter=-whitespace,-runtime,-readability,+legal,-build,+build/header_guard,+build/include_config,+build/namespaces
 
19
 
 
20
# make a dep file from a cc by linting
 
21
SUFFIXES += .cc.linted .h.linted
 
22
.cc.cc.linted:
 
23
        @test -d `dirname $@` || mkdir -p `dirname $@`
 
24
        $(LINT_COMMAND) --deps $@ $<
 
25
 
 
26
# make a dep file from a h by linting
 
27
.h.h.linted:
 
28
        @test -d `dirname $@` || mkdir -p `dirname $@`
 
29
        $(LINT_COMMAND) --deps $@ $<
 
30
 
 
31
clean-local: cleanlints
 
32
 
 
33
 
 
34
installcheck-local: linted ${srcdir}/config/lint-rules.am
 
35
 
 
36
linted:
 
37
 
 
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.
 
41
 
 
42
# This is a ChangeProtected output
 
43
lint-rules-gen:
 
44
        srcdir=${srcdir} ${top_srcdir}/config/make-lint.py
 
45
 
 
46
.PHONY: cleanlints linted lint-rules-gen
 
47
 
 
48
# dynamic rules
 
49
include config/lint-rules.am