move lib tests under lib

This commit is contained in:
Klas Lindfors
2014-06-24 09:52:10 +02:00
parent 72f271ae73
commit b048ea85e5
7 changed files with 14 additions and 12 deletions
+9 -9
View File
@@ -34,15 +34,15 @@ yubico-piv-tool-*.tar.gz
yubico-piv-tool-*.tar.gz.sig
yubico-piv-tool-*-mac.zip
yubico-piv-tool-*-mac.zip.sig
tests/test-suite.log
tests/basic
tests/basic.log
tests/basic.o
tests/basic.trs
tests/parse_key
tests/parse_key.log
tests/parse_key.o
tests/parse_key.trs
lib/tests/basic
lib/tests/basic.log
lib/tests/basic.o
lib/tests/basic.trs
lib/tests/parse_key
lib/tests/parse_key.log
lib/tests/parse_key.o
lib/tests/parse_key.trs
lib/tests/test-suite.log
lib/error.lo
lib/error.o
lib/libykpiv.la
+1 -1
View File
@@ -24,7 +24,7 @@
# non-source form of such a combination shall include the source code
# for the parts of OpenSSL used as well as that of the covered work.
SUBDIRS = lib tool tests
SUBDIRS = lib tool
ACLOCAL_AMFLAGS = -I m4
+1 -1
View File
@@ -150,9 +150,9 @@ fi
AC_CONFIG_FILES([
Makefile
lib/Makefile
lib/tests/Makefile
tool/Makefile
tool/tests/Makefile
tests/Makefile
lib/ykpiv-version.h
lib/ykpiv.pc
])
+2
View File
@@ -24,6 +24,8 @@
# non-source form of such a combination shall include the source code
# for the parts of OpenSSL used as well as that of the covered work.
SUBDIRS = . tests
AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS)
AM_CPPFLAGS = $(OPENSSL_CFLAGS) $(PCSC_CFLAGS)
+1 -1
View File
@@ -28,7 +28,7 @@ AM_CFLAGS = $(WARN_CFLAGS)
AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib
AM_LDFLAGS = -no-install
LDADD = ../lib/libykpiv.la
LDADD = ../libykpiv.la
check_PROGRAMS = basic parse_key
TESTS = $(check_PROGRAMS)
View File