aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-04-27 10:23:27 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-04-27 10:23:27 +0200
commit45de0579207becbf742c56e21f44446abde2b10e (patch)
treee0f9c7f3cd694f294fe39abbb7daf34e1e4ccb49 /src/Makefile.am
parentaa87f0ab15c15784c4d7ee55e8c5972f5353b41e (diff)
make: add 'checksrc' as target to check code style
The make target checksrc now works in the root makefile and in both the src and lib directories. It is also run automatically on "all" if configure --enable-debug was used.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index c1915f7f7..d697e78ea 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -96,10 +96,12 @@ $(HUGE):
echo "void hugehelp(void) {}" >>$(HUGE)
endif
-if CURLDEBUG
-# for debug builds, we scan the sources on all regular make invokes
# ignore hugehelp.c since it is generated source code and it plays by slightly
# different rules!
-all-local:
+checksrc:
@@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/src -Whugehelp.c $(curl_SOURCES)
+
+if CURLDEBUG
+# for debug builds, we scan the sources on all regular make invokes
+all-local: checksrc
endif