mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-28 04:04:47 +00:00
16 lines
172 B
Makefile
16 lines
172 B
Makefile
|
#
|
||
|
# Makefile for Deluge
|
||
|
#
|
||
|
|
||
|
PREFIX = /usr
|
||
|
|
||
|
|
||
|
all:
|
||
|
python setup.py build
|
||
|
|
||
|
install:
|
||
|
python setup.py install --prefix=$(PREFIX)
|
||
|
|
||
|
clean:
|
||
|
python setup.py clean; rm -rf ./build
|