diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-02-15 13:31:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-02-21 16:10:51 +0100 |
commit | acb0dea27efff4b35796015b96570b59fd517078 (patch) | |
tree | ca009b81f101fdb8cce8529dc2856a24f6910f6f /Makefile | |
parent | db4903eb4875bed6c5b8a4259cdd7bc1768dfdf6 (diff) | |
download | ffmpeg-streaming-acb0dea27efff4b35796015b96570b59fd517078.zip ffmpeg-streaming-acb0dea27efff4b35796015b96570b59fd517078.tar.gz |
build: Split logic for building examples off into a separate Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -154,6 +154,7 @@ endef $(foreach D,$(FFLIBS),$(eval $(call DOSUBDIR,lib$(D)))) include $(SRC_PATH)/doc/Makefile +include $(SRC_PATH)/doc/examples/Makefile define DOPROG OBJS-$(1) += $(1).o $(OBJS-$(1)-yes) @@ -239,5 +240,4 @@ $(sort $(OBJDIRS)): # so this saves some time on slow systems. .SUFFIXES: -.PHONY: all all-yes alltools check *clean config examples install* -.PHONY: testprogs uninstall* +.PHONY: all all-yes alltools check *clean config install* testprogs uninstall* |