Commit 39016fd2 authored by Wesley W. Terpstra's avatar Wesley W. Terpstra

eca: allow user to specify additional compile flags

parent ba244c35
......@@ -10,8 +10,10 @@ EB_LIB ?= -L$(EB) -letherbone
EB_INC ?= -I$(EB)
endif
CXX = g++
CXXFLAGS = -Wall -O2 -I. $(EB_INC)
EXTRA_FLAGS ?=
CXX ?= g++
CXXFLAGS ?= $(EXTRA_FLAGS) -Wall -O2 -I. $(EB_INC)
TARGETS = lib/version.h libeca.a eca-ctl eca-table
all: $(TARGETS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment