~drizzle-trunk/drizzle/development

1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
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
1192.6.2 by Robert Collins
Merged in lifeless' fix for parallel lint and only linting changed files.
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
1192.3.55 by Robert Collins
Merged from Robert: changed subdir make files to be included makefiles.
21
SUFFIXES += .cc.linted .h.linted
1192.3.38 by Monty Taylor
Fixed the linting.
22
.cc.cc.linted:
1192.6.2 by Robert Collins
Merged in lifeless' fix for parallel lint and only linting changed files.
23
	@test -d `dirname $@` || mkdir -p `dirname $@`
24
	$(LINT_COMMAND) --deps $@ $<
25
26
# make a dep file from a h by linting
1192.3.38 by Monty Taylor
Fixed the linting.
27
.h.h.linted:
1192.6.2 by Robert Collins
Merged in lifeless' fix for parallel lint and only linting changed files.
28
	@test -d `dirname $@` || mkdir -p `dirname $@`
29
	$(LINT_COMMAND) --deps $@ $<
30
31
clean-local: cleanlints
32
33
1471.3.1 by Monty Taylor
Latest pandora-build. Moves the lint check to only run distcheck.
34
installcheck-local: linted ${srcdir}/config/lint-rules.am
1192.6.2 by Robert Collins
Merged in lifeless' fix for parallel lint and only linting changed files.
35
1192.3.52 by Monty Taylor
Merged in linted: rule from Robert.
36
linted:
37
1192.6.2 by Robert Collins
Merged in lifeless' fix for parallel lint and only linting changed files.
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
1192.3.52 by Monty Taylor
Merged in linted: rule from Robert.
46
.PHONY: cleanlints linted lint-rules-gen
1192.6.2 by Robert Collins
Merged in lifeless' fix for parallel lint and only linting changed files.
47
48
# dynamic rules
49
include config/lint-rules.am