diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-10-30 10:14:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-10-30 10:14:57 +0000 |
commit | 5bab85364663f624bd9206bb3ca7d2d0f69d356c (patch) | |
tree | b49fb0c6e572c80744132c9232ae248ebb22210b /Makefile | |
parent | 63d247eadb0b4788749c4220243152ebbfa33d4c (diff) | |
download | ffmpeg-5bab85364663f624bd9206bb3ca7d2d0f69d356c.tar.gz |
Add check target to run both tests and checkheaders targets.
Originally committed as revision 15750 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -162,6 +162,8 @@ distclean:: # regression tests +check: test checkheaders + fulltest test: codectest libavtest seektest FFMPEG_REFFILE = $(SRC_PATH)/tests/ffmpeg.regression.ref @@ -331,6 +333,6 @@ tests/seek_test$(EXESUF): tests/seek_test.c $(FF_DEP_LIBS) $(CC) $(FF_LDFLAGS) $(CFLAGS) -o $@ $< $(FF_EXTRALIBS) -.PHONY: lib videohook documentation *test regtest-* swscale-error alltools +.PHONY: lib videohook documentation *test regtest-* swscale-error alltools check -include $(VHOOK_DEPS) |