Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile.ffmpeg: replace make with \$(MAKE)
  • Loading branch information
perexg committed Apr 15, 2015
1 parent ce3a9a1 commit 4e1e909
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile.ffmpeg
Expand Up @@ -104,7 +104,7 @@ $(LIBAVDIR)/$(YASM)/.tvh_build: \
cd $(LIBAVDIR)/$(YASM) && $(CONFIGURE) \
--prefix=/ffmpeg
DESTDIR=$(LIBAVDIR)/build \
make -C $(LIBAVDIR)/$(YASM) install
$(MAKE) -C $(LIBAVDIR)/$(YASM) install
@touch $@

#
Expand All @@ -124,7 +124,7 @@ $(LIBAVDIR)/$(LIBOGG)/.tvh_build: \
--enable-static \
--disable-shared
DESTDIR=$(LIBAVDIR)/build \
make -C $(LIBAVDIR)/$(LIBOGG) install
$(MAKE) -C $(LIBAVDIR)/$(LIBOGG) install
@touch $@

$(LIBAVDIR)/$(LIBVORBIS)/.tvh_download: \
Expand All @@ -143,7 +143,7 @@ $(LIBAVDIR)/$(LIBVORBIS)/.tvh_build: \
--disable-shared \
--with-ogg=$(LIBAVDIR)/build/ffmpeg
DESTDIR=$(LIBAVDIR)/build \
make -C $(LIBAVDIR)/$(LIBVORBIS) install
$(MAKE) -C $(LIBAVDIR)/$(LIBVORBIS) install
@touch $@

#
Expand Down Expand Up @@ -183,7 +183,7 @@ $(LIBAVDIR)/$(LIBX264)/.tvh_build: \
--disable-gpac \
--disable-lsmash
DESTDIR=$(LIBAVDIR)/build \
make -C $(LIBAVDIR)/$(LIBX264) install
$(MAKE) -C $(LIBAVDIR)/$(LIBX264) install
@touch $@

endif
Expand All @@ -206,7 +206,7 @@ $(LIBAVDIR)/$(LIBVPX)/.tvh_build: \
--enable-static \
--disable-shared
DIST_DIR=$(LIBAVDIR)/build/ffmpeg \
make -C $(LIBAVDIR)/$(LIBVPX) install
$(MAKE) -C $(LIBAVDIR)/$(LIBVPX) install
@touch $@

#
Expand Down Expand Up @@ -240,7 +240,7 @@ $(LIBAVDIR)/$(FFMPEG)/.tvh_build: \
$(foreach muxer,$(MUXERS),--enable-muxer=$(muxer)) \
$(foreach bsf,$(BSFS),--enable-bsf=$(bsf))
DESTDIR=$(LIBAVDIR)/build \
make -C $(LIBAVDIR)/$(FFMPEG) install
$(MAKE) -C $(LIBAVDIR)/$(FFMPEG) install
@touch $@

.PHONY: static_libav_clean
Expand Down

0 comments on commit 4e1e909

Please sign in to comment.