diff options
| author | Mr. Sam <samuel@yakubos.org> | 2026-07-26 04:32:31 +0100 |
|---|---|---|
| committer | Mr. Sam <samuel@yakubos.org> | 2026-07-26 04:32:31 +0100 |
| commit | c5757982eee8212810dcabb80db43ed4a733147a (patch) | |
| tree | 899881a88a6fe25cb708b5e3e1002d0e959b6171 /Makefile | |
| parent | 17117131031f902165d43ed231f5a4d500cf3a66 (diff) | |
fix nonsense input, also use cc and -O3
Diffstat (limited to 'Makefile')
| -rwxr-xr-x | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,9 +2,9 @@ PREFIX = /usr/local -CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -O3 -CC = gcc +CC = cc SRC = main.c |