- Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here

This commit is contained in:
Siesh1oo 2014-03-10 20:12:20 +01:00
parent cb4293624e
commit 1cd7fbb6b8
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ TARGETS = yosys yosys-config
all: top-all
CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -I${DESTDIR}/include -MD -D_YOSYS_ -fPIC -include kernel/posix_compatibility.h
LDFLAGS = -I${DESTDIR}/lib
LDFLAGS = -L${DESTDIR}/lib
LDLIBS = -lstdc++ -lreadline -lm -ldl
export PATH := ${DESTDIR}/bin:$(PATH)