mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
b003422d92
- Bump version number to 1.36
15 lines
201 B
Makefile
15 lines
201 B
Makefile
VERSION=1.36
|
|
RELEASE=svn
|
|
|
|
all:
|
|
VERSION=$(VERSION) RELEASE=$(RELEASE) ./doit
|
|
|
|
sign:
|
|
for i in *.run; do \
|
|
gpg -bao $$i.asc $$i; \
|
|
done
|
|
|
|
clean:
|
|
rm -rf *.run image defines.m4
|
|
|
|
.PHONY: all sign clean
|