From e82312c38d838b1384df5a80cf7fd24eae2089b2 Mon Sep 17 00:00:00 2001 From: Toshaan Bharvani Date: Sat, 16 Mar 2019 10:45:04 +0100 Subject: [PATCH] add make file to compress output Signed-off-by: Toshaan Bharvani --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..19c2040 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +#!Makefile + +.PHONY: compress + +all: compress + +compress: + @find power8/ -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \; + @find intelavx/ -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \; + @find raspberrypi3b/ -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \; + +