f81aa47a19
This will become an example program to enroll a fingerprint and then verify a finger against it.
7 lines
193 B
Bash
Executable file
7 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
libtoolize --copy --force || exit 1
|
|
aclocal || exit 1
|
|
autoheader || exit 1
|
|
autoconf || exit 1
|
|
automake -a -c || exit 1
|
|
./configure --enable-maintainer-mode --enable-examples-build $*
|