mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 07:11:34 +00:00
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
|