]> git.sesse.net Git - ffmpeg/commitdiff
build: Rename OBJDIRS variable to OUTDIRS
authorDiego Biurrun <diego@biurrun.de>
Sun, 3 Feb 2019 11:59:57 +0000 (12:59 +0100)
committerDiego Biurrun <diego@biurrun.de>
Sat, 16 Feb 2019 12:09:35 +0000 (13:09 +0100)
These directories are not just for object files.

Makefile
avbuild/common.mak
avtools/Makefile
doc/examples/Makefile
tests/Makefile
tests/checkasm/Makefile
tools/Makefile

index cbccfd6ec1ac33e79ad1910bb6c2939aea952988..e1190377ab636bd0a6a225e82946e36dc75c233d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -184,7 +184,7 @@ check: all alltools checkheaders examples testprogs fate
 
 include $(SRC_PATH)/tests/Makefile
 
-$(sort $(OBJDIRS)):
+$(sort $(OUTDIRS)):
        $(Q)mkdir -p $@
 
 # Dummy rule to stop make trying to rebuild removed or renamed headers
index 17989533f9b32a16ace80bfc77ad7656e0186201..9d137bd074469fcbd17b84ca2c5da2189f2e22ab 100644 (file)
@@ -47,7 +47,7 @@ $(HOSTOBJS): | $(sort $(dir $(HOSTOBJS)))
 $(TESTOBJS): | $(sort $(dir $(TESTOBJS)))
 $(TOOLOBJS): | tools
 
-OBJDIRS := $(OBJDIRS) $(dir $(OBJS) $(HOBJS) $(HOSTOBJS) $(TESTOBJS))
+OUTDIRS := $(OUTDIRS) $(dir $(OBJS) $(HOBJS) $(HOSTOBJS) $(TESTOBJS))
 
 CLEANSUFFIXES     = *.d *.gcda *.gcno *.h.c *.map *.o *.pc *.ver *.version *~
 LIBSUFFIXES       = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a
index d95e2d9fc203f55cb09f6147a76ab3583c4bea1d..b9320572c662ac2b91966847aa84f047a52b014d 100644 (file)
@@ -28,7 +28,7 @@ $(foreach P,$(AVPROGS-yes),$(eval $(call DOAVTOOL,$(P))))
 all: $(AVPROGS)
 
 avtools/cmdutils.o: avversion.h | avtools
-OBJDIRS += avtools
+OUTDIRS += avtools
 
 ifdef AVPROGS
 install: install-progs install-data
index 40c9557fbc2fbc9640e0a02b6e2d6c85418df769..646867c73410daf5f21ff9683e491a64c5c32d84 100644 (file)
@@ -18,7 +18,7 @@ $(EXAMPLES): %$(EXESUF): %.o
 examples: $(EXAMPLES)
 
 $(EXAMPLES:%$(EXESUF)=%.o): | doc/examples
-OBJDIRS += doc/examples
+OUTDIRS += doc/examples
 
 DOXY_INPUT += $(addprefix $(SRC_PATH)/, $(EXAMPLES:%$(EXESUF)=%.c))
 
index 9fec13211f028f469e6d8391a0698eac5539924b..c3dd5879bfe2da653454282e6ffd8ed51cfae95a 100644 (file)
@@ -2,7 +2,7 @@ THREADS = 1
 VREF = tests/vsynth1/00.pgm
 AREF = tests/data/asynth1.sw
 
-OBJDIRS += tests/data tests/vsynth1 tests/data/filtergraphs
+OUTDIRS += tests/data tests/vsynth1 tests/data/filtergraphs
 
 $(VREF): tests/videogen$(HOSTEXESUF) | tests/vsynth1
        $(M)./$< 'tests/vsynth1/'
index d5febec74ccbf3c42241c38af9788b9b35ff6ec7..debda7e9e2409707c346229d5fe608076c36dee0 100644 (file)
@@ -30,7 +30,7 @@ CHECKASMOBJS := $(sort $(CHECKASMOBJS:%=tests/checkasm/%))
 
 CHECKASMDIRS := $(sort $(dir $(CHECKASMOBJS)))
 $(CHECKASMOBJS): | $(CHECKASMDIRS)
-OBJDIRS += $(CHECKASMDIRS)
+OUTDIRS += $(CHECKASMDIRS)
 
 CHECKASM := tests/checkasm/checkasm$(EXESUF)
 
index 372287b4522f9452eb2a6ba68686da8b43cd19e9..5eb8a3487a00dd85e5a637591b92344350692350 100644 (file)
@@ -3,7 +3,7 @@ TOOLS-$(CONFIG_ZLIB) += cws2fws
 
 tools/cws2fws$(EXESUF): ELIBS = $(ZLIB)
 
-OBJDIRS += tools
+OUTDIRS += tools
 
 clean::
        $(RM) $(CLEANSUFFIXES:%=tools/%)