summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e93365bf7d..0a4f7c08a3 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ EXE=.exe
PROG=ffmpeg$(EXE)
else
EXT=
-PROG=ffmpeg ffserver
+PROG=ffmpeg ffplay ffserver
endif
all: lib $(PROG)
@@ -30,11 +30,15 @@ ffmpeg$(EXE): ffmpeg.o libav/libav.a libavcodec/libavcodec.a
ffserver$(EXE): ffserver.o libav/libav.a libavcodec/libavcodec.a
$(CC) $(LDFLAGS) -o $@ $^ -lm
+ffplay: ffmpeg$(EXE)
+ ln -sf $< $@
+
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
install: all
install -s -m 755 $(PROG) $(prefix)/bin
+ ln -sf ffmpeg $(prefix)/bin/ffplay
clean:
$(MAKE) -C libavcodec clean