$OpenBSD: patch-engines_phalanx-scid_makefile,v 1.2 2019/03/31 21:31:16 bcallah Exp $

Don't hardcode CC or optimization flags.

Index: engines/phalanx-scid/makefile
--- engines/phalanx-scid/makefile.orig
+++ engines/phalanx-scid/makefile
@@ -1,8 +1,8 @@
-CC = gcc
+CC ?= gcc
 
 ####### choose the line that makes the binary faster on your machine
 # CFLAGS = -O3 -Wall -fomit-frame-pointer -funroll-loops
-CFLAGS = -O3 -w -fomit-frame-pointer --std=gnu89 -D_GNU_SOURCE
+CFLAGS = -w -fomit-frame-pointer -std=gnu89 -D_GNU_SOURCE
 # -std=c99 
 #-Werror removed
 
