From c9998b28fb18a7b3f5b8481058da1c224e4cc6e1 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Wed, 16 May 2018 19:02:59 +0200 Subject: Initial commit. --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..93a7aad --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CC ?= cc +CFLAGS += -O3 -march=native +CPPFLAGS += +LDFLAGS += -pthread + +turbowc: turbowc.c + $(CC) $< -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) \ No newline at end of file -- cgit