diff options
author | James Almer <jamrial@gmail.com> | 2017-10-11 18:37:56 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-11 18:37:56 -0300 |
commit | 5adc1f14f91b762d8e7a7056e98a1ede82a58b6c (patch) | |
tree | df31b7f8f817e823254e13ea08a0f6e4000b0213 /Makefile | |
parent | f6a959adff30699919634b777d5b4640a2721f26 (diff) | |
parent | d1d6230ea3dd2c34bcd121f958706f3177f8d8c5 (diff) | |
download | ffmpeg-streaming-5adc1f14f91b762d8e7a7056e98a1ede82a58b6c.zip ffmpeg-streaming-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-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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* |