diff options
Diffstat (limited to 'src/lib/exceptions')
-rw-r--r-- | src/lib/exceptions/Makefile.am | 8 | ||||
-rw-r--r-- | src/lib/exceptions/tests/Makefile.am | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/exceptions/Makefile.am b/src/lib/exceptions/Makefile.am index 1d0ce2d4d9..aa7d6cdb9c 100644 --- a/src/lib/exceptions/Makefile.am +++ b/src/lib/exceptions/Makefile.am @@ -3,10 +3,10 @@ SUBDIRS = . tests AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib AM_CXXFLAGS=$(B10_CXXFLAGS) -lib_LTLIBRARIES = libexceptions.la -libexceptions_la_SOURCES = exceptions.h exceptions.cc +lib_LTLIBRARIES = libb10-exceptions.la +libb10_exceptions_la_SOURCES = exceptions.h exceptions.cc CLEANFILES = *.gcno *.gcda -libexceptions_includedir = $(includedir)/$(PACKAGE_NAME)/exceptions -libexceptions_include_HEADERS = exceptions.h +libb10_exceptions_includedir = $(includedir)/$(PACKAGE_NAME)/exceptions +libb10_exceptions_include_HEADERS = exceptions.h diff --git a/src/lib/exceptions/tests/Makefile.am b/src/lib/exceptions/tests/Makefile.am index 1e313530bd..83b9765044 100644 --- a/src/lib/exceptions/tests/Makefile.am +++ b/src/lib/exceptions/tests/Makefile.am @@ -20,7 +20,7 @@ run_unittests_SOURCES += exceptions_unittest.cc run_unittests_CPPFLAGS = $(AM_CPPFLAGS) $(GTEST_INCLUDES) run_unittests_LDFLAGS = $(GTEST_LDFLAGS) run_unittests_LDADD = $(GTEST_LDADD) -run_unittests_LDADD += $(top_builddir)/src/lib/exceptions/libexceptions.la +run_unittests_LDADD += $(top_builddir)/src/lib/exceptions/libb10-exceptions.la endif noinst_PROGRAMS = $(TESTS) |