summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-08-12 21:49:49 -0400
committerrsiddharth <s@ricketyspace.net>2019-08-12 21:49:49 -0400
commit39c85710f5ab1f7c63caf30beaaaede7286fc53a (patch)
tree69f2c4563919590b55977b41fd5ef6b21a8c5848 /Makefile
Initial commit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..9da525b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+# -*- coding: utf-8 -*-
+#
+# SPDX-License-Identifier: ISC
+#
+# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
+#
+# This file is part of dingy.
+#
+
+VENV_DIR=/usr/local/virtualenv/dingy
+VENV_CMD=virtualenv-3
+
+
+dev:
+ pip install -r requirements.txt
+.PHONY: dev
+
+
+va:
+ @echo ${VENV_DIR}/bin/activate
+.PHONY: va
+
+
+venv:
+ rm -rf *.egg-info
+ ${SHELL} -c 'if [[ -d $(VENV_DIR) ]] then \
+ rm -rf $(VENV_DIR); fi'
+ ${VENV_CMD} --clear --python=python3 $(VENV_DIR)
+.PHONY: venv