deluge/Makefile
Marcos Pinto 3324d7afc7 .
2007-05-25 17:57:35 +00:00

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