Files
pam-fprint-grosshack/tests/Makefile.am
Bastien Nocera 4fa5552650 Add PAM module
Add a PAM module, and enable all the warnings
2008-11-03 22:53:44 +00:00

24 lines
682 B
Makefile

BUILT_SOURCES = manager-dbus-glue.h device-dbus-glue.h
noinst_HEADERS = $(BUILT_SOURCES)
CLEANFILES = $(BUILT_SOURCES)
bin_PROGRAMS = verify enroll list
verify_SOURCES = verify.c
verify_CFLAGS = $(WARN_CFLAGS) $(GLIB_CFLAGS)
verify_LDADD = $(GLIB_LIBS)
enroll_SOURCES = enroll.c
enroll_CFLAGS = $(WARN_CFLAGS) $(GLIB_CFLAGS)
enroll_LDADD = $(GLIB_LIBS)
list_SOURCES = list.c
list_CFLAGS = $(WARN_CFLAGS) $(GLIB_CFLAGS)
list_LDADD = $(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=$@