From 9f06c8df76df2e2956713200b5367f8f63948296 Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 29 Apr 2004 21:14:44 +0000 Subject: [PATCH] Hopefully fix a chicken/egg linking problem for people who've never built or installed simgear before. --- simgear/sound/Makefile.am | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/simgear/sound/Makefile.am b/simgear/sound/Makefile.am index 1488f132..c570677c 100644 --- a/simgear/sound/Makefile.am +++ b/simgear/sound/Makefile.am @@ -21,9 +21,14 @@ noinst_PROGRAMS = openal_test1 openal_test2 openal_test1_SOURCES = openal_test1.cxx openal_test2_SOURCES = openal_test2.cxx -openal_test1_LDADD = -lsgdebug $(openal_LIBS) +openal_test1_LDADD = \ + $(top_builddir)/simgear/debug/libsgdebug.a \ + $(openal_LIBS) openal_test2_LDADD = \ $(top_builddir)/simgear/sound/libsgsound.a \ - -lsgdebug -lsgmisc -lsgstructure $(openal_LIBS) + $(top_builddir)/simgear/debug/libsgdebug.a \ + $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/structure/libsgstructure.a \ + $(openal_LIBS) INCLUDES = -I$(top_srcdir) -- 2.39.5