This commit is contained in:
Maciej Barć
2020-08-04 23:23:18 +02:00
commit 49f9ec2c44
9 changed files with 845 additions and 0 deletions

27
Makefile Normal file
View File

@ -0,0 +1,27 @@
BIN = leaden
.PHONY: all clean install uninstall distclean
all:
@echo did nothing. try targets: install, or uninstall.
clean:
$(RM) -dr $(BIN).egg-info
$(RM) -dr build
$(RM) -dr dist
$(RM) -dr $(BIN)/__pycache__
install:
python setup.py -v install --user
uninstall:
pip uninstall -v -y $(BIN)
distclean: uninstall
distclean: clean