Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ffa1b80a14..a8f341620c 100644
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,8 @@ PROG= ffmpeg ffserver
all: lib $(PROG)
lib:
- make -C libavcodec all
- make -C libav all
+ $(MAKE) -C libavcodec all
+ $(MAKE) -C libav all
ffmpeg: ffmpeg.o libav/libav.a libavcodec/libavcodec.a
gcc $(LDFLAGS) -o $@ $^ -lm
@@ -31,8 +31,8 @@ install: all
install -s -m 755 $(PROG) $(prefix)/bin
clean:
- make -C libavcodec clean
- make -C libav clean
+ $(MAKE) -C libavcodec clean
+ $(MAKE) -C libav clean
rm -f *.o *~ gmon.out TAGS $(PROG)
distclean: clean