deluge/Makefile

15 lines
178 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:
python setup.py clean; rm -rf ./build