~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/lint-source.am

Fixed the linting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# make a dep file from a cc by linting
4
4
SUFFIXES = .cc.linted .h.linted
5
 
.cc.linted.cc:
 
5
.cc.cc.linted:
6
6
        @test -d `dirname $@` || mkdir -p `dirname $@`
7
7
        $(LINT_COMMAND) --deps $@ $<
8
8
 
9
9
# make a dep file from a h by linting
10
 
.h.linted.h:
 
10
.h.h.linted:
11
11
        @test -d `dirname $@` || mkdir -p `dirname $@`
12
12
        $(LINT_COMMAND) --deps $@ $<
13
13