grim/hgkeeper-theme

Add a makefile
draft
2020-05-05, Gary Kramlich
2d6c58bf4603
Parents b0e6b49ed37b
Children d8b4dd8a410c
Add a makefile
  • +17 -0
    Makefile
  • --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/Makefile Tue May 05 00:00:18 2020 -0500
    @@ -0,0 +1,17 @@
    +#!/usr/bin/make -f
    +
    +.PHONY: all
    +all: sdist
    +
    +.PHONY: clean
    +clean:
    + rm -rf dist build *.egg-info
    +
    +.PHONY: sdist
    +sdist:
    + python3 setup.py sdist
    +
    +.PHONY: upload
    +upload: dist
    + twine upload dist/*
    +