mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-05-15 07:48:11 +02:00
There is now a single Manager class shared between all apps. Apps then share a collection of Device objects.
16 lines
475 B
Makefile
16 lines
475 B
Makefile
BUILT_SOURCES = manager-dbus-glue.h device-dbus-glue.h
|
|
noinst_HEADERS = $(BUILT_SOURCES)
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
bin_PROGRAMS = demo
|
|
|
|
demo_SOURCES = demo.c
|
|
demo_CFLAGS = $(AM_CFLAGS) $(DBUS_GLIB_CFLAGS)
|
|
demo_LDADD = $(DBUS_GLIB_LIBS)
|
|
|
|
manager-dbus-glue.h: ../src/manager.xml
|
|
dbus-binding-tool --prefix=fprint_manager --mode=glib-client $< --output=$@
|
|
|
|
device-dbus-glue.h: ../src/device.xml
|
|
dbus-binding-tool --prefix=fprint_device --mode=glib-client $< --output=$@
|
|
|