1auto
2
3# This will be used to compile .c files.
4
5cc -O2 -Wall
6
7# In case, the automatic detection does not work (i.e. Raspian Linux) use this.
8
9clang -O2 -Wall
10
11# You can use clang instead.
12