summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2024-12-22 21:53:57 +0100
committererdgeist <erdgeist@erdgeist.org>2024-12-22 21:53:57 +0100
commite3481a4a35091b32b6fbee80c1c9ba2b6d7b50d6 (patch)
tree58f90b32cbd89599acfaab07377cc0447f1190c1 /Makefile
Rework of halfnarp and fullnarp into a self contained repository. Still WIP
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5ae5aea
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
1all: install
2
3import: venv
4 venv/bin/python3 ./halfnarp2.py -i
5
6do-export: venv
7 venv/bin/python3 ./halfnarp2.py -e
8
9run: venv
10 PYTHONIOENCODING=utf-8 venv/bin/python3 ./halfnarp2.py
11
12run: venv
13 PYTHONIOENCODING=utf-8 venv/bin/python3 ./fullnarp.py
14
15venv:
16 python3 -m venv ./venv
17
18install: venv
19 venv/bin/pip install --upgrade pip
20 venv/bin/pip install -r requirements.txt