mirror of https://github.com/YosysHQ/icestorm.git
Minor Makefile typo fix
This commit is contained in:
parent
563c09751c
commit
0b4b038632
|
|
@ -5,7 +5,7 @@ ifneq ($(shell uname -s),Darwin)
|
|||
CFLAGS = -MD -O0 -ggdb -Wall -std=c99 -I/usr/local/include
|
||||
else
|
||||
LIBFTDI_NAME = $(shell $(PKG_CONFIG) --exists libftdi1 && echo ftdi1 || echo ftdi)
|
||||
LDLIBS = -L/usr/local/lib -l${LIBFTDI_NAME} -lm
|
||||
LDLIBS = -L/usr/local/lib -l$(LIBFTDI_NAME) -lm
|
||||
CFLAGS = -MD -O0 -ggdb -Wall -std=c99 -I/usr/local/include
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue