files to create a loki-setup based installer. run "make installer"

This commit is contained in:
Ludwig Nussel 2005-11-27 15:34:16 +00:00
parent 64025e68f0
commit be42cb3201
7 changed files with 196 additions and 2 deletions

15
code/unix/setup/Makefile Normal file
View file

@ -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