aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiesh1oo <siesh1oo@siesh1oo.no>2014-03-10 20:12:20 +0100
committerSiesh1oo <siesh1oo@siesh1oo.no>2014-03-11 19:43:59 +0100
commit4d56fbc150e5dcdefb1709d82aee91c9bb0d1227 (patch)
tree6be5b0555d40cc07308cc6976c11d5cf46c12e36
parent4958559456c849811f213cb1b9e2beea61916e3c (diff)
downloadyosys-4d56fbc150e5dcdefb1709d82aee91c9bb0d1227.tar.gz
yosys-4d56fbc150e5dcdefb1709d82aee91c9bb0d1227.tar.bz2
yosys-4d56fbc150e5dcdefb1709d82aee91c9bb0d1227.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 ad68ee1e3..75a8f42bb 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,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)