update the Makefile

This commit is contained in:
Andreas Zweili 2020-10-12 14:48:08 +02:00
parent f61f1e080c
commit 529c9a6fba
1 changed files with 2 additions and 8 deletions

View File

@ -1,11 +1,11 @@
SHELL=/bin/bash
.PHONY: dist/restic_qt
.PHONY: dist/url2markdown
dist/restic-qt: venv
( \
. venv/bin/activate; \
pyinstaller -F url2markdown; \
pyinstaller -F url2markdown/url2markdown.py; \
)
venv: venv/bin/activate
@ -22,12 +22,6 @@ init:
( \
pip3 install -r requirements.txt; \
pip3 install -e .; \
TEST_REPO=/tmp/test-resticqt; \
export RESTIC_REPOSITORY=$$TEST_REPO; \
export RESTIC_PASSWORD='foo'; \
rm -rf $$TEST_REPO; \
mkdir $$TEST_REPO; \
restic init; \
)
test: