summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-10-11 18:37:56 -0300
committerJames Almer <jamrial@gmail.com>2017-10-11 18:37:56 -0300
commit5adc1f14f91b762d8e7a7056e98a1ede82a58b6c (patch)
treedf31b7f8f817e823254e13ea08a0f6e4000b0213 /Makefile
parentf6a959adff30699919634b777d5b4640a2721f26 (diff)
parentd1d6230ea3dd2c34bcd121f958706f3177f8d8c5 (diff)
downloadffmpeg-5adc1f14f91b762d8e7a7056e98a1ede82a58b6c.tar.gz
Merge commit 'd1d6230ea3dd2c34bcd121f958706f3177f8d8c5'
* commit 'd1d6230ea3dd2c34bcd121f958706f3177f8d8c5': build: Add "build" shorthand target that depends on all compile targets Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f964a770e6..22f194be9b 100644
--- a/Makefile
+++ b/Makefile
@@ -154,6 +154,7 @@ endif
config:
$(SRC_PATH)/configure $(value FFMPEG_CONFIGURATION)
+build: all alltools examples testprogs
check: all alltools examples testprogs fate
include $(SRC_PATH)/tests/Makefile
@@ -169,4 +170,5 @@ $(sort $(OBJDIRS)):
# so this saves some time on slow systems.
.SUFFIXES:
-.PHONY: all all-yes alltools check *clean config install* testprogs uninstall*
+.PHONY: all all-yes alltools build check config testprogs
+.PHONY: *clean install* uninstall*