1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
NULL=
sbin_SCRIPTS = lxdm
CLEANFILES = $(sbin_SCRIPTS)
lxdmdir = $(datadir)/lxdm
lxdm_DATA = \
lxdm.glade \
lxdm-gtk3.glade \
config.ui \
$(NULL)
lxdm_confdir = /etc/lxdm
lxdm_conf_DATA = \
PostLogin \
PostLogout \
PreLogin \
PreReboot \
PreShutdown \
LoginReady \
lxdm.conf \
Xsession \
$(NULL)
install-data-hook:
chmod +x $(DESTDIR)/etc/lxdm/Xsession \
$(DESTDIR)/etc/lxdm/PostLogin \
$(DESTDIR)/etc/lxdm/PostLogout \
$(DESTDIR)/etc/lxdm/PreLogin \
$(DESTDIR)/etc/lxdm/PreReboot \
$(DESTDIR)/etc/lxdm/PreShutdown \
$(DESTDIR)/etc/lxdm/LoginReady
chmod 640 $(DESTDIR)/etc/lxdm/lxdm.conf
themedir=$(datadir)/lxdm/themes/Industrial
theme_DATA= \
themes/Industrial/index.theme \
themes/Industrial/gtkrc \
themes/Industrial/wave.svg \
themes/Industrial/login.png \
themes/Industrial/shade.png \
themes/Industrial/lang.png \
themes/Industrial/session.png \
themes/Industrial/greeter.ui \
themes/Industrial/greeter-gtk3.ui \
themes/Industrial/gtk.css \
themes/Industrial/nobody.png \
$(NULL)
EXTRA_DIST= \
$(lxdm_DATA) \
$(lxdm_conf_DATA) \
$(theme_DATA) \
lxdm.conf.in \
$(NULL)
|