commit adf4b010edf02bdde805c3a686054c3ca7f96eef parent 62ea097484864465cdda3a75eaf89c97d2dbc15a Author: nolash <dev@holbrook.no> Date: Sun, 11 Apr 2021 15:00:35 +0200 Add dist command in makefile Diffstat:
M | CHANGELOG | | | 1 | + |
M | Makefile | | | 9 | +++++++++ |
M | VERSION | | | 3 | ++- |
3 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG b/CHANGELOG @@ -1,2 +1,3 @@ - 0.0.1-pending * encoder for bytes and lists + * decoder for bytes and lists diff --git a/Makefile b/Makefile @@ -32,4 +32,13 @@ check: build_test rm -vf src/*.o rm -vf src/lib*.so* +dist: check + mkdir -vp dist + tar -zcvf dist/librlp-`cat VERSION`.tar.gz src/*.h src/*.c Makefile CONTRIBUTORS LICENSE VERSION CHANGELOG + + +.PHONE distclean: clean + rm -rf dist/ + + .PHONY test: check diff --git a/VERSION b/VERSION @@ -1 +1 @@ -0.0.1-alpha.1 +0.0.1-alpha.1 +\ No newline at end of file