add `make clean`
This commit is contained in:
parent
55d64262db
commit
a910d47f23
7
Makefile
7
Makefile
|
@ -2,9 +2,7 @@
|
||||||
# Makefile for Deluge
|
# Makefile for Deluge
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION ?= 0.5.1
|
PREFIX = /usr
|
||||||
|
|
||||||
PREFIX ?= /usr
|
|
||||||
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
@ -12,3 +10,6 @@ all:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
python setup.py install --prefix=$(PREFIX)
|
python setup.py install --prefix=$(PREFIX)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
python setup.py clean; rm -rf ./build
|
Loading…
Reference in New Issue