From 10bb96a0dfd9dfb50e870499661f2adf8050f11f Mon Sep 17 00:00:00 2001 From: Daniel Drake Date: Mon, 15 Oct 2007 22:16:22 +0100 Subject: [PATCH] Rename verify to verify_live ...to make way for an enroll example which stores on disk, and a verify example that loads from disk. --- TODO | 3 --- examples/Makefile.am | 6 +++--- examples/{verify.c => verify_live.c} | 0 3 files changed, 3 insertions(+), 6 deletions(-) rename examples/{verify.c => verify_live.c} (100%) diff --git a/TODO b/TODO index 730ad01..4ddda91 100644 --- a/TODO +++ b/TODO @@ -1,9 +1,7 @@ LIBRARY ======= -debugging messages fingerprint data classifcation by device or device type storage mechanism -verification imaging support external imaging APIs identification @@ -12,7 +10,6 @@ test suite against NFIQ compliance set DRIVERS ======= -UPEK TouchStrip driver Sunplus 895 driver AES3501 driver AES4000 driver diff --git a/examples/Makefile.am b/examples/Makefile.am index 5b676c6..fa58c78 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,6 +1,6 @@ INCLUDES = -I$(top_srcdir) -noinst_PROGRAMS = verify +noinst_PROGRAMS = verify_live -verify_SOURCES = verify.c -verify_LDADD = ../libfprint/libfprint.la -lfprint +verify_live_SOURCES = verify_live.c +verify_live_LDADD = ../libfprint/libfprint.la -lfprint diff --git a/examples/verify.c b/examples/verify_live.c similarity index 100% rename from examples/verify.c rename to examples/verify_live.c