mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 16:07:28 +00:00
16 lines
189 B
Makefile
16 lines
189 B
Makefile
|
VERSION=FIXME
|
||
|
RELEASE=1
|
||
|
|
||
|
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
|