Added SeaBIOS image to NSIS installer script and updated Makefile

This commit is contained in:
Volker Ruppert 2014-06-14 07:26:18 +00:00
parent b856f2edd6
commit f51a8ad031
2 changed files with 9 additions and 5 deletions

View File

@ -1,14 +1,14 @@
# To build an NSIS installer, get NSIS version 2.0a7 from
# To build an NSIS installer, get NSIS version 2.44 or newer from
# http://sourceforge.net/projects/nsis
# Fix the MAKENSIS variable so that you have the correct path.
# Unzip the windows binary release into a subdirectory of this
# directory, for example "2.0.pre2". Make sure the VERSION
# variable has the same name as the directory, and in bochs.nsi
# the VER_MAJOR, VER_MINOR, and VER_REV values should also match.
# directory, for example "2.6.5". Make sure the VERSION
# variable has the same name as the directory.
#
# Type make, and it should build an installer called Bochs-${VERSION}.exe
MAKENSIS='c:/Program Files/NSIS/makensis'
# MAKENSIS='c:/Program Files/NSIS/makensis'
MAKENSIS='/c/Program Files (x86)/NSIS/makensis'
VERSION=@VERSION@
TARGET=Bochs-${VERSION}.exe

View File

@ -113,6 +113,8 @@ Section "ROM Images (required)" SecROMs
File "${SRCDIR}\BIOS-bochs-*"
File "${SRCDIR}\VGABIOS-*"
File "${SRCDIR}\bios.bin-*"
File "${SRCDIR}\SeaBIOS-README.txt"
SectionEnd
Section "Documentation in HTML" SecDocs
@ -285,6 +287,8 @@ Section "Uninstall"
Delete "$INSTDIR\keymaps\*"
Delete "$INSTDIR\BIOS-bochs-*"
Delete "$INSTDIR\VGABIOS-*"
Delete "$INSTDIR\bios.bin-*"
Delete "$INSTDIR\SeaBIOS-README.txt"
Delete "$INSTDIR\dlxlinux\*"
Delete "$INSTDIR\docs\index.html"
Delete "$INSTDIR\docs\user\*"