diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-09-11 22:49:35 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-09-11 22:49:35 +0000 |
commit | d35ff76b794281956cfb75430abee75227fd0378 (patch) | |
tree | 47b78c681d736ef6c68a164f9c830a60c024eb29 /Makefile | |
parent | 258207b7fcb3505c7a5d0185b984f1eef8aca847 (diff) | |
download | ffmpeg-streaming-d35ff76b794281956cfb75430abee75227fd0378.zip ffmpeg-streaming-d35ff76b794281956cfb75430abee75227fd0378.tar.gz |
windows installer
Originally committed as revision 2263 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 \ |