diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-02-28 22:11:39 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-03-01 10:13:26 +0100 |
commit | d1d6230ea3dd2c34bcd121f958706f3177f8d8c5 (patch) | |
tree | aeaa3781411a869ebe7babb414317e7c6b8c228d | |
parent | 4d1f7e8bc7516e6b7b15f754af4a665b3f8af79e (diff) | |
download | ffmpeg-streaming-d1d6230ea3dd2c34bcd121f958706f3177f8d8c5.zip ffmpeg-streaming-d1d6230ea3dd2c34bcd121f958706f3177f8d8c5.tar.gz |
build: Add "build" shorthand target that depends on all compile targets
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -179,6 +179,7 @@ distclean:: config: $(SRC_PATH)/configure $(value LIBAV_CONFIGURATION) +build: all alltools checkheaders examples testprogs check: all alltools checkheaders examples testprogs fate include $(SRC_PATH)/tests/Makefile @@ -194,4 +195,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* |