summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk11
1 files changed, 0 insertions, 11 deletions
diff --git a/config.mk b/config.mk
deleted file mode 100644
index adcbe37..0000000
--- a/config.mk
+++ /dev/null
@@ -1,11 +0,0 @@
-
-SHELL = /bin/bash
-
-# c++ compiler flags that are used for all targets:
-# they make binaries faster and smaller
-# -s : strips the binary
-# -O3 : optimizes the binary
-# -Ofast : optimizes the binary
-# -march=native : optimizes the binary for the current CPU
-# -flto : link time optimization
-CFLAGS = -Ofast -march=native -flto -s