mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-11 15:21:40 +00:00
16 lines
307 B
Makefile
16 lines
307 B
Makefile
|
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
|