summaryrefslogblamecommitdiffstats
path: root/Makefile
blob: ec9aeee9e37dd78ed7071f498a719975169f2162 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                      
                                     
                     
                                 
 

                                       
















                                                        




                                    
# -*- 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
JSHINT=~/.npm-packages/bin/jshint

dunno:
	@echo "Give me somepin to make"

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


jsh:
	@${JSHINT} nfsw/static/io.js
.PHONY: jsh