8 lines
182 B
Makefile
8 lines
182 B
Makefile
|
NAUTILUSPYEXTDIR ?= /usr/share/nautilus-python/extensions
|
||
|
|
||
|
.PHONY: install
|
||
|
|
||
|
install:
|
||
|
install -d $(DESTDIR)$(NAUTILUSPYEXTDIR)
|
||
|
install -t $(DESTDIR)$(NAUTILUSPYEXTDIR) -m 0644 *.py
|