- Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here
authorSiesh1oo <siesh1oo@siesh1oo.no>
Mon, 10 Mar 2014 19:12:20 +0000 (20:12 +0100)
committerSiesh1oo <siesh1oo@siesh1oo.no>
Tue, 11 Mar 2014 18:43:59 +0000 (19:43 +0100)
Makefile

index ad68ee1e3ee162eaaaf5e3007a1583b6636c8b92..75a8f42bbbf01f658dc295b978308505819847f9 100644 (file)
--- 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)