mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-12-03 17:02:08 +00:00
16 lines
191 B
Makefile
16 lines
191 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
|
||
|
|
||
|
.PHONY: all sign clean
|