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
This commit is contained in:
NotZed
2000-02-21 23:28:19 +00:00
committed by Michael Zucci
parent e9bd59b86e
commit 3b3a08b1de
2 changed files with 10 additions and 5 deletions

View File

@ -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

View File

@ -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)