summaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 9da525ba9ebcfe7cbba88b96bcb020915df234b4 (plain) (tree)




























                                                        
# -*- 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