Rename examples to tests

Real clients won't have the xml available, so calling these "examples"
is not appropriate.
This commit is contained in:
Daniel Drake
2008-03-09 10:51:48 +00:00
parent fc6b0c194c
commit 2a1aa4e0c0
6 changed files with 7 additions and 7 deletions

20
tests/Makefile.am Normal file
View File

@ -0,0 +1,20 @@
BUILT_SOURCES = manager-dbus-glue.h device-dbus-glue.h
noinst_HEADERS = $(BUILT_SOURCES)
CLEANFILES = $(BUILT_SOURCES)
bin_PROGRAMS = verify enroll
verify_SOURCES = verify.c
verify_CFLAGS = $(AM_CFLAGS) $(DBUS_GLIB_CFLAGS)
verify_LDADD = $(DBUS_GLIB_LIBS)
enroll_SOURCES = enroll.c
enroll_CFLAGS = $(AM_CFLAGS) $(DBUS_GLIB_CFLAGS)
enroll_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=$@