summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2018-05-16 19:02:59 +0200
committerPaweł Redman <pawel.redman@gmail.com>2018-05-16 19:02:59 +0200
commitc9998b28fb18a7b3f5b8481058da1c224e4cc6e1 (patch)
tree6e859dc99b2404e0ccf6d9acd8e09896600693c0 /Makefile
Initial commit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
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