summaryrefslogtreecommitdiffstats
path: root/cfg.mk
Commit message (Collapse)AuthorAgeFilesLines
* syntax-check: Exclude png files from sc_prohibit_empty_lines_at_EOFChristophe Fergeau2015-10-191-1/+1
|
* syntax-check: Clean-up exception rulesChristophe Fergeau2015-10-191-10/+3
| | | | Some files no longer exists, some exceptions are no longer needed, ...
* syntax-check: Exclude red_replay_qxl.c from sc_cast_of_argument_to_freeChristophe Fergeau2015-10-191-0/+2
| | | | | red_replay_qxl.c stores some pointers QXLPHYSICAL data members (ie uint64_t), and then needs to free them, so the cast is required.
* Add a few more syntax-check exemptionsDaniel P. Berrange2012-04-251-2/+4
| | | | Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
* Add a 'syntax-check' make targetDaniel P. Berrange2012-01-131-0/+150
The 'make syntax-check' target is used to perform various code style sanity checks, as well as to detect certain trivial error patterns. The target is placed in GNUmakefile, instead of Makefile.am since it relies on GNU specific make extensions. The actual GNUmakefile and maint.mk files are taken from the GNULIB project, unchanged The cfg.mk file is used to configure which of the syntax checks are activated, to allow addition of new project specific syntax checks, and to blacklist certain files which should not be checked * .mailmap: Add mapping for various broken email addrs in commit log, to stop complaints about AUTHORS file missing entries * GNUmakefile: define the 'syntax-check' rule * maint.mk: definition of standard syntax checks * cfg.mk: configuration for checks