mirror of https://github.com/YosysHQ/icestorm.git
makefile: Do not ignore user-provided CFLAGS
This commit is contained in:
parent
3c42bdbf66
commit
917afd1a85
|
|
@ -1,8 +1,8 @@
|
|||
CXX ?= clang++
|
||||
CC ?= clang
|
||||
LDLIBS = -lm -lstdc++
|
||||
CFLAGS = -MD -O0 -ggdb -Wall -std=c99 -I/usr/local/include
|
||||
CXXFLAGS = -MD -O0 -ggdb -Wall -std=c++11 -I/usr/local/include
|
||||
CFLAGS += -MD -O0 -ggdb -Wall -std=c99 -I/usr/local/include
|
||||
CXXFLAGS += -MD -O0 -ggdb -Wall -std=c++11 -I/usr/local/include
|
||||
PKG_CONFIG ?= pkg-config
|
||||
DESTDIR ?=
|
||||
PREFIX ?= /usr/local
|
||||
|
|
|
|||
Loading…
Reference in New Issue