diff options
author | Ludovic Courtès | 2008-04-21 22:48:13 +0200 |
---|---|---|
committer | Ludovic Courtès | 2008-04-21 22:48:40 +0200 |
commit | aaa3cace2f265ed1b0f417bbb12d7752f3d10a74 (patch) | |
tree | d369048775c62e51d3b7d538fe4d1476fd92c1d0 /guile-lint.am | |
parent | e2a1a5ab2cc249670f4d599e0659a58c3b337c2d (diff) | |
download | skribilo-aaa3cace2f265ed1b0f417bbb12d7752f3d10a74.tar.gz skribilo-aaa3cace2f265ed1b0f417bbb12d7752f3d10a74.tar.lz skribilo-aaa3cace2f265ed1b0f417bbb12d7752f3d10a74.zip |
Run Guile-Lint on documentation modules.
* doc/modules/Makefile.am (CLEANFILES, lintable): New.
Include `guile-lint.am'.
* guile-lint.am: Add "-L $(top_srcdir)/doc/modules".
Diffstat (limited to 'guile-lint.am')
-rw-r--r-- | guile-lint.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/guile-lint.am b/guile-lint.am index f54dc4c..5559e82 100644 --- a/guile-lint.am +++ b/guile-lint.am @@ -16,8 +16,10 @@ BUILT_SOURCES = stamp-lint CLEANFILES += stamp-lint stamp-lint: $(lintable) - -GUILE="$(GUILE)" \ - $(GUILE_LINT) -L $(top_srcdir)/src/guile \ - -L $(top_builddir)/src/guile -k $^ + -GUILE="$(GUILE)" \ + $(GUILE_LINT) -L $(top_srcdir)/src/guile \ + -L $(top_builddir)/src/guile \ + -L $(top_srcdir)/doc/modules \ + -k $^ touch $@ endif |