summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-09-11 22:49:35 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-09-11 22:49:35 +0000
commitd35ff76b794281956cfb75430abee75227fd0378 (patch)
tree47b78c681d736ef6c68a164f9c830a60c024eb29 /Makefile
parent258207b7fcb3505c7a5d0185b984f1eef8aca847 (diff)
windows installer
Originally committed as revision 2263 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1e12d33345..d1c7a4bdb0 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \