mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
15 lines
307 B
Makefile
15 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
|