10 lines
409 B
Makefile
10 lines
409 B
Makefile
|
PREFIX ?= /usr/local
|
||
|
BINDIR ?= $(PREFIX)/bin
|
||
|
DATADIR ?= $(PREFIX)/share
|
||
|
CONFDIR = /etc
|
||
|
|
||
|
install:
|
||
|
sed "s/%DATADIR%/\/usr\/share/" lightdm-mobile-greeter.py > lightdm-mobile-greeter
|
||
|
install -Dm755 lightdm-mobile-greeter -t $(DESTDIR)$(BINDIR)
|
||
|
install -Dm644 style.css interface.ui -t $(DESTDIR)$(DATADIR)/lightdm-mobile-greeter
|
||
|
install -Dm644 lightdm-mobile-greeter.desktop -t $(DESTDIR)$(DATADIR)/xgreeters
|