use MAKE variable

Originally committed as revision 63 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard
2001-08-11 18:57:27 +00:00
parent 0c1e384c5f
commit 2cc8ae9676
2 changed files with 5 additions and 4 deletions

View File

@@ -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