grim/port-authority

086c5d7a0ea8
Parents 7bda2be4d3b4
Children 58ce9a85157e
add a makefile to make it a bit easier to build packages
  • +12 -0
    Makefile
  • --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/Makefile Sat Jan 24 13:59:55 2015 -0600
    @@ -0,0 +1,12 @@
    +#!/usr/bin/make -f
    +
    +OUTPUT=port-authority.zip
    +
    +.PHONY: all clean
    +
    +all: .
    + zip -9r $(OUTPUT) . -x .hg* .hg/*
    +
    +clean:
    + rm -f $(OUTPUT)
    +