mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-09 04:13:33 +02:00
Track clients connected to each device using EggDbusMonitor. When there are no more clients connected to the device, release it. When no devices are used anymore, set up a timeout to exit within 30 seconds.
19 lines
683 B
Makefile
19 lines
683 B
Makefile
BUILT_SOURCES = manager-dbus-glue.h device-dbus-glue.h
|
|
noinst_HEADERS = $(BUILT_SOURCES)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
EXTRA_DIST = fprintd.xml
|
|
|
|
libexec_PROGRAMS = fprintd
|
|
|
|
fprintd_SOURCES = main.c manager.c device.c file_storage.c egg-dbus-monitor.c egg-dbus-monitor.h
|
|
fprintd_LDADD = $(FPRINT_LIBS) $(DAEMON_LIBS)
|
|
fprintd_CFLAGS = $(WARN_CFLAGS) $(FPRINT_CFLAGS) $(DAEMON_CFLAGS) -DLOCALEDIR=\""$(datadir)/locale"\" -DPLUGINDIR=\""$(libdir)/fprintd/modules"\"
|
|
|
|
manager-dbus-glue.h: manager.xml
|
|
dbus-binding-tool --prefix=fprint_manager --mode=glib-server $< --output=$@
|
|
|
|
device-dbus-glue.h: device.xml
|
|
dbus-binding-tool --prefix=fprint_device --mode=glib-server $< --output=$@
|
|
|