mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-09 04:13:33 +02:00
Rename examples to tests
Real clients won't have the xml available, so calling these "examples" is not appropriate.
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -12,7 +12,7 @@ config.status
|
|||||||
.deps
|
.deps
|
||||||
client-bindings.h
|
client-bindings.h
|
||||||
*-dbus-glue.h
|
*-dbus-glue.h
|
||||||
demo
|
verify
|
||||||
enroll
|
enroll
|
||||||
*.o
|
*.o
|
||||||
fprintd
|
fprintd
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
AUTOMAKE_OPTIONS = dist-bzip2
|
AUTOMAKE_OPTIONS = dist-bzip2
|
||||||
SUBDIRS = src examples
|
SUBDIRS = src tests
|
||||||
EXTRA_DIST = TODO
|
EXTRA_DIST = TODO
|
||||||
|
|
||||||
|
|||||||
@ -33,6 +33,6 @@ CFLAGS="$saved_cflags"
|
|||||||
AM_CFLAGS="-std=gnu99 $inline_cflags -Wall -Wundef -Wunused -Wstrict-prototypes -Werror-implicit-function-declaration -Wno-pointer-sign -Wshadow"
|
AM_CFLAGS="-std=gnu99 $inline_cflags -Wall -Wundef -Wunused -Wstrict-prototypes -Werror-implicit-function-declaration -Wno-pointer-sign -Wshadow"
|
||||||
AC_SUBST(AM_CFLAGS)
|
AC_SUBST(AM_CFLAGS)
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile] [src/Makefile] [examples/Makefile])
|
AC_CONFIG_FILES([Makefile] [src/Makefile] [tests/Makefile])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
|
|||||||
@ -2,11 +2,11 @@ BUILT_SOURCES = manager-dbus-glue.h device-dbus-glue.h
|
|||||||
noinst_HEADERS = $(BUILT_SOURCES)
|
noinst_HEADERS = $(BUILT_SOURCES)
|
||||||
CLEANFILES = $(BUILT_SOURCES)
|
CLEANFILES = $(BUILT_SOURCES)
|
||||||
|
|
||||||
bin_PROGRAMS = demo enroll
|
bin_PROGRAMS = verify enroll
|
||||||
|
|
||||||
demo_SOURCES = demo.c
|
verify_SOURCES = verify.c
|
||||||
demo_CFLAGS = $(AM_CFLAGS) $(DBUS_GLIB_CFLAGS)
|
verify_CFLAGS = $(AM_CFLAGS) $(DBUS_GLIB_CFLAGS)
|
||||||
demo_LDADD = $(DBUS_GLIB_LIBS)
|
verify_LDADD = $(DBUS_GLIB_LIBS)
|
||||||
|
|
||||||
enroll_SOURCES = enroll.c
|
enroll_SOURCES = enroll.c
|
||||||
enroll_CFLAGS = $(AM_CFLAGS) $(DBUS_GLIB_CFLAGS)
|
enroll_CFLAGS = $(AM_CFLAGS) $(DBUS_GLIB_CFLAGS)
|
||||||
Reference in New Issue
Block a user