From 39c85710f5ab1f7c63caf30beaaaede7286fc53a Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Mon, 12 Aug 2019 21:49:49 -0400 Subject: Initial commit. --- Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 +# +# 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 -- cgit v1.2.3