Minor Makefile typo fix

This commit is contained in:
Clifford Wolf 2016-09-04 16:20:48 +02:00
parent 563c09751c
commit 0b4b038632
1 changed files with 1 additions and 1 deletions

View File

@ -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