add nsis installer target for mingw32
This commit is contained in:
parent
53fc214d00
commit
3327ce1ab3
3 changed files with 151 additions and 0 deletions
15
misc/nsis/Makefile
Normal file
15
misc/nsis/Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
VERSION=1.35_SVN
|
||||
RELEASE=0
|
||||
|
||||
all: ioquake3-$(VERSION)-$(RELEASE).x86.exe
|
||||
|
||||
ioquake3.nsi: ioquake3.nsi.in
|
||||
sed 's/XXXVERSIONXXX/$(VERSION)/;s/XXXRELEASEXXX/$(RELEASE)/' < $< > $@
|
||||
|
||||
ioquake3-$(VERSION)-$(RELEASE).x86.exe: ioquake3.nsi
|
||||
makensis ioquake3.nsi
|
||||
|
||||
clean:
|
||||
rm -rf *.exe ioquake3.nsi
|
||||
|
||||
.PHONY: all clean
|
Loading…
Add table
Add a link
Reference in a new issue