summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 14:52:41 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 14:52:41 -0500
commitd0bde3c60fa911ac0bb0f71ce2a6a963c874392e (patch)
treeddcc00fab2749cc7b4110eed9f69189b6fcc7422 /config.mk
parent3fb8effa3603e9a9b96d263009fc1397433436ba (diff)
Everything works before validation
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