diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-08-11 18:57:27 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-08-11 18:57:27 +0000 |
commit | 2cc8ae967620f4d4a21eb61c775568dd4c810881 (patch) | |
tree | fac86852ef411a0ecca2e70acf06e19f0c747ac8 /Makefile | |
parent | 0c1e384c5f70f6e05af90d9b40f18a8602f4fc84 (diff) | |
download | ffmpeg-2cc8ae967620f4d4a21eb61c775568dd4c810881.tar.gz |
use MAKE variable
Originally committed as revision 63 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |