summaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* github: tweak the GH Actions configurationPaul Moore2021-08-121-1/+3
| | | | | | | | | This should help leverage the recent code coverage changes as well as some changes to the test framework. We also add the generated HTML coverage report to the "codecoverage" artifacts. Acked-by: Tom Hromatka <tom.hromatka@oracle.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
* build: reorganize the code coverage targetsPaul Moore2021-08-121-10/+9
| | | | | | | | | | | | | | | | This is arguably the way it should have been done in the beginning but TravisCI and Coveralls masked the need for proper standalone code coverage tests. With this change simply enabling code coverage during ./configure and following with a code coverage build should generate proper gcov/lcov data and a local HTML report, example: % ./configure --enable-code-coverage % make check-code-coverage Acked-by: Tom Hromatka <tom.hromatka@oracle.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
* doc: ship the SECURITY.md filePaul Moore2019-07-221-1/+1
| | | | Signed-off-by: Paul Moore <paul@paul-moore.com>
* docs: create a doc/admin directory and move RELEASE_PROCESS.md into itPaul Moore2019-04-171-1/+1
| | | | | | The idea is that any administrative/process docs should go in doc/admin. Signed-off-by: Paul Moore <paul@paul-moore.com>
* build: enable distcheck'ing for the python codePaul Moore2018-05-101-0/+3
| | | | | | | | I'm not particularly proud of the seccomp.pyx hack, but it works, and enabling the python bindings during the distcheck is definitely the "Greater Good". Signed-off-by: Paul Moore <paul@paul-moore.com>
* docs: add the RELEASE_PROCESS.md file to the list of distributed filesPaul Moore2018-05-101-1/+3
| | | | Signed-off-by: Paul Moore <paul@paul-moore.com>
* build: add a "help" make target for the top level MakefilePaul Moore2018-01-251-0/+12
| | | | Signed-off-by: Paul Moore <paul@paul-moore.com>
* doc: rename SUBMITTING_PATCHES to CONTRIBUTINGPaul Moore2017-06-191-1/+1
| | | | | | | This is in better keeping with the convention of most Open Source projects. Signed-off-by: Paul Moore <paul@paul-moore.com>
* build: create an easy to use test coverage make targetPaul Moore2017-03-011-0/+11
| | | | Signed-off-by: Paul Moore <paul@paul-moore.com>
* doc: convert SUBMITTING_PATCHES to MarkdownPaul Moore2017-02-241-1/+1
| | | | Signed-off-by: Paul Moore <paul@paul-moore.com>
* build: add basic code coverage supportPaul Moore2017-02-061-0/+3
| | | | Signed-off-by: Paul Moore <paul@paul-moore.com>
* build: fix 'make distcheck'Paul Moore2017-02-061-1/+1
| | | | Signed-off-by: Paul Moore <paul@paul-moore.com>
* build: fix some problems seen with 'make dist' tarballsPaul Moore2014-10-211-0/+2
| | | | Signed-off-by: Paul Moore <pmoore@redhat.com>
* all: fix a number of small bugs found by CoverityPaul Moore2014-08-291-3/+8
| | | | | | | Also display the build revision to make things easier when submitting builds for scanning. Signed-off-by: Paul Moore <pmoore@redhat.com>
* build: add support for Coverity scanningPaul Moore2014-08-211-0/+17
| | | | | | | Thanks to the folks at Coverity for supporting Open Source projects such as this one. Signed-off-by: Paul Moore <pmoore@redhat.com>
* tests: create a simple program to test the internal syscall tablesPaul Moore2014-05-221-0/+1
| | | | | | | | | | | | | This patch adds a dead simple, and a bit hack-ish, little program that checks the internal syscall tables for consistency across the different supported architectures. We also tie this test into the autotools test infrastructure. This should be of particular importance when adding or updating architectures. This patch also fixed some automake/libtool problems which were causing us to double-build some objects under src/. Signed-off-by: Paul Moore <pmoore@redhat.com>
* build: create a 'check-build' targetPaul Moore2014-05-071-0/+3
| | | | | | | Sometimes it is helpful to build the test without executing them, add a new target, 'check-build' to do just that. Signed-off-by: Paul Moore <pmoore@redhat.com>
* build: add the "check-syntax" target to the autotools buildPaul Moore2014-05-011-0/+3
| | | | Signed-off-by: Paul Moore <pmoore@redhat.com>
* build: add silent build support to automakePaul Moore2014-05-011-0/+6
| | | | Signed-off-by: Paul Moore <pmoore@redhat.com>
* build: add headers to all of the autotools filesPaul Moore2014-05-011-2/+17
| | | | | | There are also some minor cosmetic tweaks to the files. Signed-off-by: Paul Moore <pmoore@redhat.com>
* build: general cleanup and reorganization of the autotools configurationPaul Moore2014-04-291-24/+1
| | | Signed-off-by: Paul Moore <pmoore@redhat.com>
* build: initial attempt to use autotools as the build systemJan Engelhardt2014-04-291-0/+31
With my apologies to Jan for delaying this patch for so long, there are a number of differences between Jan's original patch and what is being merged in this patch; almost all of the changes are due to changes in the underlying code base, but there are a few minor fixes as well. Signed-off-by: Jan Engelhardt <jengelh@inai.de> Signed-off-by: Paul Moore <pmoore@redhat.com>