This commit is contained in:
Justin Ethier 2016-07-30 19:34:57 -04:00
parent bd74d90100
commit 9eaa1ba47c

View file

@ -5,9 +5,9 @@
# Configuration options for the makefile
# Use these lines instead for debugging or profiling
#CFLAGS = -g
#CFLAGS = -g -pg
CFLAGS ?= -g -Wall
#CFLAGS = -g -Wall
#CFLAGS = -g -pg -Wall
CFLAGS ?= -O2 -Wall
CC ?= cc
# Commands "baked into" cycone for invoking the C compiler
CC_PROG ?= "$(CC) ~src-file~ $(CFLAGS) -c -o ~exec-file~.o"