aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiesh1oo <siesh1oo@siesh1oo.no>2014-03-10 20:12:20 +0100
committerSiesh1oo <siesh1oo@siesh1oo.no>2014-03-12 14:00:40 +0100
commit51bf1c871e89167228c406649201e608fd618d5c (patch)
treebc553bb97875c4db59723cc5a3a3fba6dfec52b7
parent94bc11f0216010e54a8a4dd1fd390af97181f627 (diff)
downloadyosys-51bf1c871e89167228c406649201e608fd618d5c.tar.gz
yosys-51bf1c871e89167228c406649201e608fd618d5c.tar.bz2
yosys-51bf1c871e89167228c406649201e608fd618d5c.zip
- Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1bafd2179..39b324b4d 100644
--- a/Makefile
+++ b/Makefile
@@ -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)