mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-21 03:21:33 +00:00
16 lines
201 B
Makefile
16 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
|