Lines Matching full:echo

7 	@echo "python packaging help:"
8 @echo ""
9 @echo "make check-minreqs:"
10 @echo " Run tests in the minreqs virtual environment."
11 @echo " These tests use the oldest dependencies."
12 @echo " Requires: Python 3.9"
13 @echo " Hint (Fedora): 'sudo dnf install python3.9'"
14 @echo ""
15 @echo "make check-tox:"
16 @echo " Run tests against multiple python versions."
17 @echo " These tests use the newest dependencies."
18 @echo " Requires: Python 3.9 - 3.11, and tox."
19 @echo " Hint (Fedora): 'sudo dnf install python3-tox python3.11'"
20 @echo " The variable QEMU_TOX_EXTRA_ARGS can be use to pass extra"
21 @echo " arguments to tox".
22 @echo ""
23 @echo "make check-dev:"
24 @echo " Run tests in a venv against your default python3 version."
25 @echo " These tests use the newest dependencies."
26 @echo " Requires: Python 3.x"
27 @echo ""
28 @echo "make check:"
29 @echo " Run tests in your *current environment*."
30 @echo " Performs no environment setup of any kind."
31 @echo ""
32 @echo "make develop:"
33 @echo " Install deps needed for 'make check',"
34 @echo " and install the qemu package in editable mode."
35 @echo " (Can be used in or outside of a venv.)"
36 @echo ""
37 @echo "make min-venv"
38 @echo " Creates the minreqs virtual environment ($(QEMU_MINVENV_DIR))"
39 @echo ""
40 @echo "make dev-venv"
41 @echo " Creates a simple venv for check-dev. ($(QEMU_VENV_DIR))"
42 @echo ""
43 @echo "make clean:"
44 @echo " Remove package build output."
45 @echo ""
46 @echo "make distclean:"
47 @echo " remove venv files, qemu package forwarder,"
48 @echo " built distribution files, and everything from 'make clean'."
49 @echo ""
50 @echo -e "Have a nice day ^_^\n"
54 @echo "pipenv was dropped; try 'make check-minreqs' or 'make min-venv'"
61 @echo "VENV $(QEMU_MINVENV_DIR)"
64 echo "ACTIVATE $(QEMU_MINVENV_DIR)"; \
66 echo "INSTALL wheel $(QEMU_MINVENV_DIR)"; \
68 echo "INSTALL -r tests/minreqs.txt $(QEMU_MINVENV_DIR)";\
70 echo "INSTALL -e qemu $(QEMU_MINVENV_DIR)"; \
78 echo "ACTIVATE $(QEMU_MINVENV_DIR)"; \
86 @echo "VENV $(QEMU_VENV_DIR)"
89 echo "ACTIVATE $(QEMU_VENV_DIR)"; \
91 echo "INSTALL qemu[devel] $(QEMU_VENV_DIR)"; \
99 echo "ACTIVATE $(QEMU_VENV_DIR)"; \