mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-07 06:33:24 +00:00
Fix install path
This commit is contained in:
parent
7e4f3a69c0
commit
6971563ba9
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -1007,10 +1007,10 @@ clean-unit-test:
|
||||||
@$(MAKE) -C $(UNITESTPATH) clean
|
@$(MAKE) -C $(UNITESTPATH) clean
|
||||||
|
|
||||||
wheel: $(TARGETS) $(EXTRA_TARGETS)
|
wheel: $(TARGETS) $(EXTRA_TARGETS)
|
||||||
python setup.py bdist_wheel
|
python3 -m pip wheel .
|
||||||
|
|
||||||
install_wheel:
|
install_wheel: wheel
|
||||||
pip install dist/pyosys*.whl --target $(DESTDIR) --upgrade
|
python3 -m pip install pyosys*.whl --force-reinstall
|
||||||
|
|
||||||
install: $(TARGETS) $(EXTRA_TARGETS)
|
install: $(TARGETS) $(EXTRA_TARGETS)
|
||||||
$(INSTALL_SUDO) mkdir -p $(DESTDIR)$(BINDIR)
|
$(INSTALL_SUDO) mkdir -p $(DESTDIR)$(BINDIR)
|
||||||
|
@ -1238,4 +1238,4 @@ echo-cxx:
|
||||||
-include techlibs/*/*.d
|
-include techlibs/*/*.d
|
||||||
|
|
||||||
.PHONY: all top-all abc test install install-abc docs clean mrproper qtcreator coverage vcxsrc
|
.PHONY: all top-all abc test install install-abc docs clean mrproper qtcreator coverage vcxsrc
|
||||||
.PHONY: config-clean config-clang config-gcc config-gcc-static config-gprof config-sudo
|
.PHONY: config-clean config-clang config-gcc config-gcc-static config-gprof config-sudo wheel install_wheel
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue