Remove LIB_CFLAGS

This commit is contained in:
Justin Ethier 2017-03-28 21:46:39 +00:00
parent 4c08f7099d
commit 0369788ab6
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,7 @@ include Makefile.config
# Commands
CYCLONE = cyclone -A .
CCOMP = $(CC) $(LIB_CFLAGS)
CCOMP = $(CC) $(CFLAGS)
INDENT_CMD = indent -linux -l80 -i2 -nut
# Directories

View file

@ -6,7 +6,6 @@
# Compiler options
CFLAGS ?= -O2 -fPIC -rdynamic -Wall -Iinclude -L.
LIB_CFLAGS ?= -O2 -rdynamic -Wall -Iinclude -L.
COMP_CFLAGS ?= -O2 -fPIC -rdynamic -Wall -I$(PREFIX)/include -L$(PREFIX)/lib
# Use these lines instead for debugging or profiling
#CFLAGS = -g -Wall