From 3361fbaafac638ade70255fcf6199d0890f039fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Tue, 10 Jul 2012 10:29:14 +0000 Subject: [PATCH] use libmrw.la instead of -lmrw for full libtool dependencies; refs #2 --- doc/examples/makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/makefile.am b/doc/examples/makefile.am index 15d1a80..54c5c0f 100644 --- a/doc/examples/makefile.am +++ b/doc/examples/makefile.am @@ -8,11 +8,11 @@ noinst_PROGRAMS = exceptionhandling smartpointer exceptionhandling_SOURCES = exceptionhandling.cxx exceptionhandling_CPPFLAGS = -I${top_srcdir}/src exceptionhandling_LDFLAGS = -L${top_builddir}/src -exceptionhandling_LDADD = -lmrw +exceptionhandling_LDADD = ${top_builddir}/src/.libs/libmrw.la smartpointer_SOURCES = smartpointer.cxx smartpointer_CPPFLAGS = -I${top_srcdir}/src smartpointer_LDFLAGS = -L${top_builddir}/src -smartpointer_LDADD = -lmrw +smartpointer_LDADD = ${top_builddir}/src/.libs/libmrw.la MAINTAINERCLEANFILES = makefile.in \ No newline at end of file