add nsis installer target for mingw32

This commit is contained in:
Ludwig Nussel 2008-04-15 14:19:03 +00:00
parent 53fc214d00
commit 3327ce1ab3
3 changed files with 151 additions and 0 deletions

15
misc/nsis/Makefile Normal file
View 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