blob: adcbe37782d54d237eb5c293b58542611086622c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|