grim/port-authority

086c5d7a0ea8
add a makefile to make it a bit easier to build packages
#!/usr/bin/make -f
OUTPUT=port-authority.zip
.PHONY: all clean
all: .
zip -9r $(OUTPUT) . -x .hg* .hg/*
clean:
rm -f $(OUTPUT)