Skip to content

Commit f366a3a

Browse files
committed
Merge pull request #89 from tvincentNuoDB/master
Updated clean after install in the Makefile
2 parents bf56bd5 + ea39c47 commit f366a3a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2013, NuoDB, Inc.
2+
# Copyright (c) 2015, NuoDB, Inc.
33
# All rights reserved.
44
#
55
# Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@ all:
3232

3333
install:
3434
python setup.py install
35-
rm -rf build
35+
make clean
3636

3737
test:
3838
pip install -r test_requirements.txt
@@ -41,5 +41,8 @@ test:
4141
deploy:
4242
python setup.py register
4343
python setup.py sdist upload
44-
44+
45+
clean:
46+
rm -vrf build/ dist/ *.egg-info htmlcov/
47+
4548
.PHONY: all install test

0 commit comments

Comments
 (0)