use libmrw.la instead of -lmrw for full libtool dependencies; refs #2

master
Marc Wäckerlin 13 years ago
parent 6a1451772e
commit 3361fbaafa
  1. 4
      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
Loading…
Cancel
Save