Fix static library linking

Now we make the .so correctly we tried to link with it which meant the tools
didn't run by default!  Linkage now fixed to static.
master
John Cox 2013-04-08 17:15:42 +01:00
rodzic 6970a9f9ba
commit 0e8463ea1d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -155,7 +155,7 @@ TEST_OBJS = \
# Our library
STATIC_LIB = $(LIBDIR)/libtstools.a
LIBOPTS = -L$(LIBDIR) -ltstools $(ARCH_FLAGS)
LIBOPTS = $(ARCH_FLAGS) $(STATIC_LIB)
ifeq ($(shell uname -s), Darwin)
SHARED_LIB = $(LIBDIR)/libtstools.xxx