- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
executable file
·19 lines (15 loc) · 418 Bytes
/
Copy pathMakefile
File metadata and controls
executable file
·19 lines (15 loc) · 418 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.PHONY: clean pep8 tests
CWD="`pwd`"
PROJECT_NAME = python-simple-swiftclient
PROJECT_HOME ?= $(CWD)
clean:
@echo "Cleaning up *.pyc files"
@find . -name "*.pyc" -delete
@find . -name "*.~" -delete
rm -rf build/ dist/ python_simple_swiftclient.egg-info
build:
@echo "Building Python simple swiftclient."
python ./setup.py build
install:
@echo "Install Python simple swiftclient."
python ./setup.py install