diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-27 05:09:29 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-27 20:37:48 +0200 |
commit | 8f7c26e39297c8ecc8670a04936e47fbfc33439b (patch) | |
tree | 48c1be47416a9ec95a8b08e028f3fbd5c447f9d0 /Makefile | |
parent | d5683aba5a4ca142ce9d446b565f7310107872c3 (diff) | |
download | ffmpeg-8f7c26e39297c8ecc8670a04936e47fbfc33439b.tar.gz |
build: Use portable abstraction for linker/hostcc output file syntax
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -91,7 +91,7 @@ FF_DEP_LIBS := $(DEP_LIBS) all: $(PROGS) $(TOOLS): %$(EXESUF): %.o - $(LD) $(LDFLAGS) -o $@ $< $(ELIBS) + $(LD) $(LDFLAGS) $(LD_O) $< $(ELIBS) tools/cws2fws$(EXESUF): ELIBS = -lz @@ -135,7 +135,7 @@ endef $(foreach P,$(PROGS-yes),$(eval $(call DOPROG,$(P)))) $(PROGS): %$(EXESUF): %.o cmdutils.o $(FF_DEP_LIBS) - $(LD) $(LDFLAGS) -o $@ $(OBJS-$*) cmdutils.o $(FF_EXTRALIBS) + $(LD) $(LDFLAGS) $(LD_O) $(OBJS-$*) cmdutils.o $(FF_EXTRALIBS) OBJDIRS += tools |