mirror of https://github.com/YosysHQ/yosys.git
- Makefile: include $(PWD) in PATH, since 'make test' can happen before 'make install'.
This commit is contained in:
parent
1cd7fbb6b8
commit
4cad046233
2
Makefile
2
Makefile
|
@ -26,7 +26,7 @@ CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -I${DESTDIR}/include -MD -D_YOSY
|
|||
LDFLAGS = -L${DESTDIR}/lib
|
||||
LDLIBS = -lstdc++ -lreadline -lm -ldl
|
||||
|
||||
export PATH := ${DESTDIR}/bin:$(PATH)
|
||||
export PATH := $(PWD):$(DESTDIR)/bin:$(PATH)
|
||||
|
||||
ifeq (Darwin,$(findstring Darwin,$(shell uname)))
|
||||
# add macports include and library path to search directories, don't use '-rdynamic' and '-lrt':
|
||||
|
|
Loading…
Reference in New Issue