mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 20:44:50 +00:00
12 lines
126 B
Makefile
12 lines
126 B
Makefile
|
#
|
||
|
# Makefile for Deluge
|
||
|
#
|
||
|
|
||
|
PREFIX = "/usr"
|
||
|
|
||
|
all:
|
||
|
python setup.py build
|
||
|
|
||
|
install:
|
||
|
python setup.py install --prefix=$(PREFIX)
|