qubes-linux-utils/imgconverter/Makefile
Marek Marczykowski-Górecki 69a3f06f99
Install python modules to /usr
On Debian python-setuptools is configured to install into /usr/local by
default.
2017-04-08 13:58:33 +02:00

17 lines
318 B
Makefile

all:
python setup.py build
.PHONY: all
clean:
python setup.py clean
.PHONY: clean
install:
python setup.py install -O1 --skip-build --prefix=/usr --root $(DESTDIR)
#ifeq (1,${DEBIANBUILD})
# cp *.py $(DESTDIR)/$(PYTHON_SITEARCH)/qubes/
#else
# cp *.py* $(DESTDIR)/$(PYTHON_SITEARCH)/qubes/
#endif
.PHONY: install