mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
15 lines
187 B
Makefile
15 lines
187 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; rm msgfmt.pyc
|