deluge/Makefile

16 lines
172 B
Makefile
Raw Normal View History

2007-05-22 22:48:51 +00:00
#
# Makefile for Deluge
#
2007-05-25 17:51:05 +00:00
PREFIX = /usr
2007-05-24 17:42:13 +00:00
2007-05-22 22:48:51 +00:00
all:
python setup.py build
install:
python setup.py install --prefix=$(PREFIX)
2007-05-25 17:51:05 +00:00
clean:
2007-05-25 17:57:35 +00:00
python setup.py clean; rm -rf ./build