diff options
author | Max Kellermann <max@duempel.org> | 2014-10-07 06:07:00 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-10-07 06:21:34 +0200 |
commit | b5119d79580d923602f9b144f9b194814317e6e4 (patch) | |
tree | 0ccc8b588b113a9b40680a5c9285d0c643619437 /Makefile.am | |
parent | d3e72e43447f3937de72dce87cd0560dc017e6f5 (diff) |
test/run_storage: new debug program
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 80894d504..98942e64b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -581,9 +581,9 @@ libstorage_a_CPPFLAGS = $(AM_CPPFLAGS) \ $(SMBCLIENT_CFLAGS) STORAGE_LIBS = \ + libstorage.a \ $(NFS_LIBS) \ - $(SMBCLIENT_LIBS) \ - libstorage.a + $(SMBCLIENT_LIBS) if ENABLE_SMBCLIENT libstorage_a_SOURCES += \ @@ -1514,6 +1514,7 @@ noinst_PROGRAMS = \ if ENABLE_DATABASE noinst_PROGRAMS += test/DumpDatabase +noinst_PROGRAMS += test/run_storage endif if ENABLE_NEIGHBOR_PLUGINS @@ -1584,6 +1585,16 @@ if HAVE_LIBUPNP test_DumpDatabase_SOURCES += src/lib/expat/ExpatParser.cxx endif +test_run_storage_LDADD = \ + $(STORAGE_LIBS) \ + $(FS_LIBS) \ + libsystem.a \ + libutil.a \ + $(GLIB_LIBS) +test_run_storage_SOURCES = \ + src/Log.cxx src/LogBackend.cxx \ + test/run_storage.cxx + endif test_run_input_LDADD = \ |