blob: ccf1f6082b9955f9cf0ecb46a7c90affaf4f8b78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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/
|