diff options
| author | Diego Biurrun <[email protected]> | 2011-06-26 13:52:40 +0200 |
|---|---|---|
| committer | Diego Biurrun <[email protected]> | 2013-01-03 15:21:39 +0100 |
| commit | dcf8f259d107838ff3778343dcb762398130a1a3 (patch) | |
| tree | 34888eaad65c1365285746ba4d6445e396489fdf | |
| parent | 576834b08e2eef0f076dd036276c410b38e7d620 (diff) | |
build: Add 'check' target to run all compile and test targets.
(cherry picked from commit 4982e1ddfaff5287e05b95957f3c56901d60b56a)
Signed-off-by: Diego Biurrun <[email protected]>
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | doc/developer.texi | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -182,6 +182,8 @@ distclean:: config: $(SRC_PATH)/configure $(value LIBAV_CONFIGURATION) +check: all alltools checkheaders examples testprogs fate + include $(SRC_PATH)/doc/Makefile include $(SRC_PATH)/tests/Makefile @@ -196,5 +198,5 @@ $(sort $(OBJDIRS)): # so this saves some time on slow systems. .SUFFIXES: -.PHONY: all all-yes alltools *clean config examples install* +.PHONY: all all-yes alltools check *clean config examples install* .PHONY: testprogs uninstall* diff --git a/doc/developer.texi b/doc/developer.texi index 046743fd62..c189de1870 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -420,9 +420,7 @@ send a reminder by email. Your patch should eventually be dealt with. @enumerate @item - Does @code{make fate} pass with the patch applied? -@item - Does @code{make checkheaders} pass with the patch applied? + Does @code{make check} pass with the patch applied? @item Is the patch against latest Libav git master branch? @item |
