1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

windows installer

Originally committed as revision 2263 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard
2003-09-11 22:49:35 +00:00
parent 258207b7fc
commit d35ff76b79
2 changed files with 81 additions and 0 deletions

View File

@@ -111,12 +111,18 @@ ffplay.o: ffplay.c
videohook: .libs
$(MAKE) -C vhook all
.PHONY: install
install: all install-man $(INSTALLVHOOK)
$(MAKE) -C libavcodec install
$(MAKE) -C libavformat install
install -d $(prefix)/bin
install -c -s -m 755 $(PROG) $(prefix)/bin
# create the window installer
wininstaller: all install
makensis ffinstall.nsi
# install man from source dir if available
install-man:
if [ -f $(SRC_PATH)/doc/ffmpeg.1 ] ; then \