diff options
Diffstat (limited to 'code/unix/setup/Makefile')
-rw-r--r-- | code/unix/setup/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/code/unix/setup/Makefile b/code/unix/setup/Makefile new file mode 100644 index 0000000..a25cd65 --- /dev/null +++ b/code/unix/setup/Makefile @@ -0,0 +1,15 @@ +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 |