diff options
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,2 +1,4 @@ debug: main.c - gcc -Wall main.c -o ./bin/debug
\ No newline at end of file + gcc -Wall main.c -o ./bin/debug +release: main.c + gcc -O2 -march-native main.c -o ./bin/release
\ No newline at end of file |