From 7a90b8e50d007d47e31d6195244ad2eb16e12e88 Mon Sep 17 00:00:00 2001 From: Samuel Henrique Date: Wed, 2 Nov 2016 17:49:50 -0200 Subject: [PATCH] Only use optimization CCFLAGS if not set prvlsy --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index a5156d2..a040a52 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -CCFLAGS += -std=c99 -O3 +CCFLAGS ?= -std=c99 -O3 TARGET = pixiewps CRYPTO = crypto/sha256.c crypto/md.c crypto/md_wrap.c