diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2018-05-16 19:02:59 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2018-05-16 19:02:59 +0200 |
commit | c9998b28fb18a7b3f5b8481058da1c224e4cc6e1 (patch) | |
tree | 6e859dc99b2404e0ccf6d9acd8e09896600693c0 /Makefile |
Initial commit.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
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 |