From: curt Date: Wed, 20 Sep 2000 21:21:13 +0000 (+0000) Subject: Oops, references to built libs need to be relative to $(top_builddir) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e13a5b57d4e62c4c2c3022e09cd0ad1fbbf6e1cf;p=simgear.git Oops, references to built libs need to be relative to $(top_builddir) --- diff --git a/simgear/bucket/Makefile.am b/simgear/bucket/Makefile.am index cb5a8995..1016b336 100644 --- a/simgear/bucket/Makefile.am +++ b/simgear/bucket/Makefile.am @@ -11,7 +11,7 @@ libsgbucket_a_SOURCES = newbucket.cxx # testbucket_SOURCES = testbucket.cxx # testbucket_LDADD = \ -# $(top_srcdir)/bucket/libsgbucket.a \ -# $(top_srcdir)/misc/libsgmisc.a +# $(top_builddir)/bucket/libsgbucket.a \ +# $(top_builddir)/misc/libsgmisc.a INCLUDES += -I$(top_srcdir) diff --git a/simgear/magvar/Makefile.am b/simgear/magvar/Makefile.am index b9c1f00f..21dfc6a1 100644 --- a/simgear/magvar/Makefile.am +++ b/simgear/magvar/Makefile.am @@ -12,6 +12,6 @@ noinst_PROGRAMS = testmagvar testmagvar_SOURCES = testmagvar.cxx -testmagvar_LDADD = $(top_srcdir)/simgear/magvar/libsgmagvar.a +testmagvar_LDADD = $(top_builddir)/simgear/magvar/libsgmagvar.a INCLUDES += -I$(top_srcdir) diff --git a/simgear/serial/Makefile.am b/simgear/serial/Makefile.am index 8e339db6..7d4a64ca 100644 --- a/simgear/serial/Makefile.am +++ b/simgear/serial/Makefile.am @@ -11,7 +11,7 @@ libsgserial_a_SOURCES = serial.cxx testserial_SOURCES = testserial.cxx testserial_LDADD = \ - $(top_srcdir)/simgear/serial/libsgserial.a \ - $(top_srcdir)/simgear/debug/libsgdebug.a + $(top_builddir)/simgear/serial/libsgserial.a \ + $(top_builddir)/simgear/debug/libsgdebug.a INCLUDES += -I$(top_srcdir)