We have to add a few more libs to a couple link lines in order to make

irix happy because it tries to resolve dependencies even if they are
eventually never used.
This commit is contained in:
curt
2001-05-15 21:31:35 +00:00
parent e145f903de
commit 6a481eed36
3 changed files with 12 additions and 7 deletions

View File

@@ -32,15 +32,15 @@ include_HEADERS = \
SUBDIRS = \
$(ZLIB_DIRS) \
bucket \
xml \
debug \
misc \
bucket \
ephemeris \
io \
magvar \
math \
$(METAR_DIRS) \
xml \
misc \
io \
route \
screen \
$(SERIAL_DIRS) \

View File

@@ -25,8 +25,11 @@ noinst_PROGRAMS = decode_binobj socktest lowtest
socktest_SOURCES = socktest.cxx
socktest_LDADD = \
$(top_builddir)/simgear/io/libsgio.a \
$(top_builddir)/simgear/debug/libsgdebug.a
$(top_builddir)/simgear/bucket/libsgbucket.a \
$(top_builddir)/simgear/io/libsgio.a \
$(top_builddir)/simgear/debug/libsgdebug.a \
$(top_builddir)/simgear/misc/libsgmisc.a \
-lz
lowtest_SOURCES = lowtest.cxx

View File

@@ -17,7 +17,9 @@ waytest_SOURCES = waytest.cxx
waytest_LDADD = \
$(top_builddir)/simgear/route/libsgroute.a \
$(top_builddir)/simgear/math/libsgmath.a \
$(top_builddir)/simgear/debug/libsgdebug.a
$(top_builddir)/simgear/debug/libsgdebug.a \
$(top_builddir)/simgear/misc/libsgmisc.a \
-lz
routetest_SOURCES = routetest.cxx