aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNotZed <NotZed@HelixCode.com>2000-02-22 07:28:19 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-02-22 07:28:19 +0800
commit3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1 (patch)
tree048aff0080981277730e68aee95ced94cc320764
parente9bd59b86ec75d3f8cd91421c7b3b9be2be0ca44 (diff)
downloadgsoc2013-evolution-3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1.tar
gsoc2013-evolution-3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1.tar.gz
gsoc2013-evolution-3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1.tar.bz2
gsoc2013-evolution-3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1.tar.lz
gsoc2013-evolution-3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1.tar.xz
gsoc2013-evolution-3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1.tar.zst
gsoc2013-evolution-3b3a08b1de601f1ec9fd0d8f210b0ec49bfba1a1.zip
change noinst_LIBRARIES to noinst_LTLIBRARIES, and supply -static to
2000-02-21 NotZed <NotZed@HelixCode.com> * Makefile.am: change noinst_LIBRARIES to noinst_LTLIBRARIES, and supply -static to LDFLAGS. Duh, and changed LDADD back to libibex.la. svn path=/trunk/; revision=1892
-rw-r--r--libibex/ChangeLog5
-rw-r--r--libibex/Makefile.am10
2 files changed, 10 insertions, 5 deletions
diff --git a/libibex/ChangeLog b/libibex/ChangeLog
index b3872e9b38..741aa18ff6 100644
--- a/libibex/ChangeLog
+++ b/libibex/ChangeLog
@@ -1,3 +1,8 @@
+2000-02-21 NotZed <NotZed@HelixCode.com>
+
+ * Makefile.am: change noinst_LIBRARIES to noinst_LTLIBRARIES, and supply -static to
+ LDFLAGS. Duh, and changed LDADD back to libibex.la.
+
2000-02-20 Matt Loper <matt@helixcode.com>
* Makefile.am: changed mkindex_LDADD to libibex.a instead of
diff --git a/libibex/Makefile.am b/libibex/Makefile.am
index 4ec18d1034..a8949d1c40 100644
--- a/libibex/Makefile.am
+++ b/libibex/Makefile.am
@@ -1,8 +1,9 @@
## Process this file with automake to produce Makefile.in
-noinst_LIBRARIES = libibex.a
+noinst_LTLIBRARIES = libibex.la
-libibex_a_SOURCES = file.c index.c find.c words.c ibex.h
+libibex_la_SOURCES = file.c index.c find.c words.c ibex.h
+libibex_la_LDFLAGS = -static
noinst_HEADERS = ibex_internal.h
@@ -12,9 +13,8 @@ INCLUDES = -I$(srcdir) $(GLIB_CFLAGS) $(UNICODE_CFLAGS)
noinst_PROGRAMS = mkindex lookup
mkindex_SOURCES = mkindex.c
-
-mkindex_LDADD = libibex.a $(GLIB_LIBS) $(UNICODE_LIBS)
+mkindex_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS)
lookup_SOURCES = lookup.c
+lookup_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS)
-lookup_LDADD = libibex.a $(GLIB_LIBS) $(UNICODE_LIBS)