]> mj.ucw.cz Git - home-hw.git/blob - telegram/Makefile
Updated build system to use external libraries
[home-hw.git] / telegram / Makefile
1 VENV=/usr/local/lib/burrow-venv
2
3 all:
4
5 install:
6         [ -d $(VENV) ] || su -c "python3 -m venv $(VENV)"
7         su -c ". $(VENV)/bin/activate && pip install -r requirements.txt"
8         su -c "install -m 755 burrow-telegram.py $(VENV)/bin/burrow-telegram"
9
10 .PHONY: all install