mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-26 05:41:46 +00:00
15 lines
202 B
Makefile
15 lines
202 B
Makefile
VERSION=1.0_SVN
|
|
RELEASE=0
|
|
|
|
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
|