summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>1998-03-09 01:57:52 +0000
committerTom Tromey <tromey@src.gnome.org>1998-03-09 01:57:52 +0000
commitaaa9cb5f5d1129ff1a46da07d178a92800002684 (patch)
tree3278486b3ab526698e314a69d40badab2a386cda
parentf77b9ac57892cd586dbed15cf6b27dd52ec9d4f8 (diff)
downloadgnome-common-aaa9cb5f5d1129ff1a46da07d178a92800002684.tar.gz
Rewrote. Library now named libgnomesupport, now installed if Gnome support
Sun Mar 8 17:13:33 1998 Tom Tromey <tromey@cygnus.com> * Makefile.am: Rewrote. Library now named libgnomesupport, now installed if Gnome support code is built. svn path=/trunk/; revision=121
-rw-r--r--support/ChangeLog5
-rw-r--r--support/Makefile.am19
2 files changed, 18 insertions, 6 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index 6a10ff0..c8d7dfd 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,8 @@
+Sun Mar 8 17:13:33 1998 Tom Tromey <tromey@cygnus.com>
+
+ * Makefile.am: Rewrote. Library now named libgnomesupport, now
+ installed if Gnome support code is built.
+
Sat Mar 7 00:03:26 1998 Tom Tromey <tromey@cygnus.com>
* gnome-argp.h (__mempcpy): New define.
diff --git a/support/Makefile.am b/support/Makefile.am
index a6139d0..9590d7e 100644
--- a/support/Makefile.am
+++ b/support/Makefile.am
@@ -1,11 +1,18 @@
## Process this file with automake to produce Makefile.in.
-noinst_LIBRARIES=libsupport.a
+supportincludedir = $(includedir)/libgnomesupport
-noinst_HEADERS=getopt.h long-options.h argp-fmtstream.h \
- argp-namefrob.h argp.h
+if BUILD_GNOME_SUPPORT
-EXTRA_DIST = argp-test.c
+lib_LTLIBRARIES = libgnomesupport.la
+
+supportinclude_HEADERS = getopt.h long-options.h argp-fmtstream.h \
+argp-namefrob.h argp.h
+
+libgnomesupport_la_SOURCES = long-options.c gnome-argp.c
+libgnomesupport_la_LIBADD = @LTLIBOBJS@
+libgnomesupport_la_LDFLAGS = -version-info 0:0:0
-libsupport_a_SOURCES=long-options.c gnome-argp.c
-libsupport_a_LIBADD=@LIBOBJS@
+endif
+
+EXTRA_DIST = argp-test.c