diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-26 13:52:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-05-15 19:10:46 +0200 |
commit | 4982e1ddfaff5287e05b95957f3c56901d60b56a (patch) | |
tree | 63c863208b540eb295ba9a64217d11acbcbde199 /Makefile | |
parent | 6de226a2b8b703abc823f18c3fd7f39a0787aeb5 (diff) | |
download | ffmpeg-4982e1ddfaff5287e05b95957f3c56901d60b56a.tar.gz |
build: Add 'check' target to run all compile and test targets.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -184,6 +184,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 @@ -198,5 +200,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* |