Change libtap.so to a local static library which is not installed
authorYannick Brosseau <yannick.brosseau@gmail.com>
Thu, 19 May 2011 19:39:29 +0000 (15:39 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 19 May 2011 19:39:29 +0000 (15:39 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
.gitignore
tests/Makefile.am
tests/libustctl_function_tests/Makefile.am

index 5d1d9cd458875bf3756aaa3ff7d81f1c390fad43..68c7364544db2bcc9df6a661087e010964a18298 100644 (file)
@@ -6,6 +6,7 @@ Makefile
 .libs/
 .deps/
 *~
+*.a
 *.la
 *.lo
 Makefile.in
index 43fb2036f3c080406527327c4051e019efa325a3..83119805714186dbbe8982a371987c2a5f5fb485 100644 (file)
@@ -2,13 +2,9 @@ SUBDIRS = . hello hello2 basic basic_long fork simple_include snprintf test-neve
 
 dist_noinst_SCRIPTS = test_loop runtests trace_matches
 
-lib_LTLIBRARIES = libtap.la
+noinst_LIBRARIES = libtap.a
 
-libtap_la_SOURCES = \
+libtap_a_SOURCES = \
        tap.c \
        tap.h
 
-libtap_la_LDFLAGS = -no-undefined -version-info 0:0:0
-
-libtap_la_LIBADD = \
-       -lpthread
\ No newline at end of file
index 723b456a4a7d697bd7dd9a5675760c826a6fb88a..0446e86ed0caa1c15d535a4eaeaeac1046879d87 100644 (file)
@@ -5,6 +5,6 @@ libustctl_function_tests_SOURCES = libustctl_function_tests.c
 libustctl_function_tests_LDADD = $(top_builddir)/libust/libust.la \
        $(top_builddir)/libustctl/libustctl.la \
        $(top_builddir)/libust-initializer.o \
-       $(top_builddir)/tests/libtap.la \
+       $(top_builddir)/tests/libtap.a \
        -lpthread
 
This page took 0.024378 seconds and 4 git commands to generate.