diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ccf1f60 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +# author: yuce +# created on 2019-05-03, at: 02:17 +0300 + +.PHONY: all build clean + + +all: build + +build: + python setup.py build + +clean: + rm -rf dist build openbsd.egg-info/ |