blob: f4ff2d21fa5236c46d2926cb17763153e21f765a (
plain)
1
2
3
4
5
6
7
8
9
|
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
-CFLAGS += --std=c99 -Wformat -pedantic -g -O2 -fomit-frame-pointer
+CFLAGS ?= -g -O2 -fomit-frame-pointer -Wformat -pedantic
+CFLAGS += --std=c99
.PHONY: clean compile
|