From 3e105d08848162b90d886bde59c010d4b0362a4b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 5 Dec 2016 18:38:53 +0100 Subject: build: Move entries related to building TOOLS to a subdirectory Makefile --- Makefile | 8 +------- tools/Makefile | 11 +++++++++++ 2 files changed, 12 insertions(+), 7 deletions(-) create mode 100644 tools/Makefile diff --git a/Makefile b/Makefile index a7dcb6c53a..b090007f1e 100644 --- a/Makefile +++ b/Makefile @@ -90,8 +90,6 @@ OBJS-avconv-$(HAVE_VDPAU_X11) += avconv_vdpau.o TESTTOOLS = audiogen videogen rotozoom tiny_psnr base64 HOSTPROGS := $(TESTTOOLS:%=tests/%) doc/print_options -TOOLS = qt-faststart trasher -TOOLS-$(CONFIG_ZLIB) += cws2fws # $(FFLIBS-yes) needs to be in linking order FFLIBS-$(CONFIG_AVDEVICE) += avdevice @@ -108,6 +106,7 @@ DATA_FILES := $(wildcard $(SRC_PATH)/presets/*.avpreset) SKIPHEADERS = cmdutils_common_opts.h \ compat/w32pthreads.h +include $(SRC_PATH)/tools/Makefile include $(SRC_PATH)/common.mak FF_EXTRALIBS := $(FFEXTRALIBS) @@ -171,10 +170,6 @@ $(foreach P,$(PROGS),$(eval $(call DOPROG,$(P:$(EXESUF)=)))) $(PROGS): %$(EXESUF): %.o $(FF_DEP_LIBS) $(LD) $(LDFLAGS) $(LDEXEFLAGS) $(LD_O) $(OBJS-$*) $(FF_EXTRALIBS) -OBJDIRS += tools - --include $(wildcard tools/*.d) - VERSION_SH = $(SRC_PATH)/version.sh GIT_LOG = $(SRC_PATH)/.git/logs/HEAD @@ -219,7 +214,6 @@ uninstall-data: clean:: $(RM) $(ALLAVPROGS) $(RM) $(CLEANSUFFIXES) - $(RM) $(CLEANSUFFIXES:%=tools/%) $(RM) -rf coverage.info lcov distclean:: diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000000..372287b452 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,11 @@ +TOOLS = qt-faststart trasher +TOOLS-$(CONFIG_ZLIB) += cws2fws + +tools/cws2fws$(EXESUF): ELIBS = $(ZLIB) + +OBJDIRS += tools + +clean:: + $(RM) $(CLEANSUFFIXES:%=tools/%) + +-include $(wildcard tools/*.d) -- cgit v1.2.3