mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
Prints can now be saved to disk (but you currently must classify which finger they are) and you can load them later. Added 2 simple example programs to demonstrate this.
13 lines
318 B
Makefile
13 lines
318 B
Makefile
INCLUDES = -I$(top_srcdir)
|
|
noinst_PROGRAMS = verify_live enroll verify
|
|
|
|
verify_live_SOURCES = verify_live.c
|
|
verify_live_LDADD = ../libfprint/libfprint.la -lfprint
|
|
|
|
enroll_SOURCES = enroll.c
|
|
enroll_LDADD = ../libfprint/libfprint.la -lfprint
|
|
|
|
verify_SOURCES = verify.c
|
|
verify_LDADD = ../libfprint/libfprint.la -lfprint
|
|
|