diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-05 14:46:38 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-03-01 11:06:52 +0100 |
commit | db869f4ea4405fb8f9736e5ecdca70f77621a28e (patch) | |
tree | 8289b615fead072df9429a129909e11ad2d59039 /tests/fate | |
parent | 3c0efbd03349ae68d3a25a082222652a102e3fd4 (diff) | |
download | ffmpeg-streaming-db869f4ea4405fb8f9736e5ecdca70f77621a28e.zip ffmpeg-streaming-db869f4ea4405fb8f9736e5ecdca70f77621a28e.tar.gz |
fate: Add build-only targets to FATE
Diffstat (limited to 'tests/fate')
-rw-r--r-- | tests/fate/build.mak | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/fate/build.mak b/tests/fate/build.mak new file mode 100644 index 0000000..ba9768e --- /dev/null +++ b/tests/fate/build.mak @@ -0,0 +1,17 @@ +FATE_BUILD += fate-build-alltools +fate-build-alltools: alltools + +FATE_BUILD += fate-build-checkheaders +fate-build-checkheaders: checkheaders + +FATE_BUILD += fate-build-examples +fate-build-examples: examples + +FATE_BUILD += fate-build-testprogs +fate-build-testprogs: testprogs + +$(FATE_BUILD): CMD = null +$(FATE_BUILD): CMP = null + +FATE += $(FATE_BUILD) +fate-build: $(FATE_BUILD) |