We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68cc45c commit ea39c47Copy full SHA for ea39c47
Makefile
@@ -1,5 +1,5 @@
1
#
2
-# Copyright (c) 2013, NuoDB, Inc.
+# Copyright (c) 2015, NuoDB, Inc.
3
# All rights reserved.
4
5
# Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@ all:
32
33
install:
34
python setup.py install
35
- rm -rf build
+ make clean
36
37
test:
38
pip install -r test_requirements.txt
@@ -41,5 +41,8 @@ test:
41
deploy:
42
python setup.py register
43
python setup.py sdist upload
44
-
+
45
+clean:
46
+ rm -vrf build/ dist/ *.egg-info htmlcov/
47
48
.PHONY: all install test
0 commit comments