From 586990981a2cf0b4522451178ac0882967811149 Mon Sep 17 00:00:00 2001 From: Hristo Venev Date: Thu, 28 May 2020 21:45:44 +0000 Subject: Initial commit. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..76aacaf --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +CFLAGS?=-O2 + +all: compress uncompress + +%: %.c + $(CC) -Wall -Wextra $(CFLAGS) $< -o $@ -- cgit