diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-20 00:15:15 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-20 00:45:30 +0100 |
commit | 8a11ce43d08352f7a290355ebb5b29c495ad9609 (patch) | |
tree | 4264a2096cb5e62af46e6ae012951c8c91b80cbc | |
parent | 26ee5ca03d76a691ab7187a1fc4dce591a161226 (diff) | |
download | ffmpeg-8a11ce43d08352f7a290355ebb5b29c495ad9609.tar.gz |
build: Ensure that output directories for header objects are created
-rw-r--r-- | common.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common.mak b/common.mak index 5d80986aab..b134835187 100644 --- a/common.mak +++ b/common.mak @@ -43,11 +43,12 @@ $(HOSTPROGS): %$(HOSTEXESUF): %.o $(HOSTLD) $(HOSTLDFLAGS) $(HOSTLD_O) $< $(HOSTLIBS) $(OBJS): | $(sort $(dir $(OBJS))) +$(HOBJS): | $(sort $(dir $(HOBJS))) $(HOSTOBJS): | $(sort $(dir $(HOSTOBJS))) $(TESTOBJS): | $(sort $(dir $(TESTOBJS))) $(TOOLOBJS): | tools -OBJDIRS := $(OBJDIRS) $(dir $(OBJS) $(HOSTOBJS) $(TESTOBJS)) +OBJDIRS := $(OBJDIRS) $(dir $(OBJS) $(HOBJS) $(HOSTOBJS) $(TESTOBJS)) CLEANSUFFIXES = *.d *.o *~ *.h.c *.map *.ver DISTCLEANSUFFIXES = *.pc |