changeset 583:2abba1360af4 trunk

[svn] libaudacious has two objectives that are evaluated, a static object and a shared object.
author nenolod
date Thu, 02 Feb 2006 17:46:30 -0800
parents fcb9cebe14fc
children f6ebe4972465
files libaudacious/Makefile.am libaudacious/Makefile.in
diffstat 2 files changed, 53 insertions(+), 52 deletions(-) [+]
line wrap: on
line diff
--- a/libaudacious/Makefile.am	Thu Feb 02 17:32:49 2006 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,52 +0,0 @@
-ACLOCAL_AMFLAGS = -I ../m4
-AUTOMAKE_OPTIONS = foreign
-
-beepincludedir = $(includedir)/audacious
-
-lib_LTLIBRARIES = libaudacious.la
-
-libaudacious_la_LDFLAGS = -export-dynamic -version-info $(LIBBEEP_MAJOR_VERSION):$(LIBBEEP_MINOR_VERSION):$(LIBBEEP_MICRO_VERSION)
-
-libaudacious_la_LIBADD = \
-	$(GTK_LIBS)      \
-	$(GCONF_LIBS)    \
-	$(GNOMEVFS_LIBS)
-
-INCLUDES = \
-	$(GTK_CFLAGS)        \
-	$(GCONF_CFLAGS)      \
-	$(GNOMEVFS_CFLAGS)   \
-	-I$(top_srcdir)      \
-	-I$(top_srcdir)/intl
-
-if HAVE_GCONF
-    CONF_SRC = configdb_gconf.c
-else
-    CONF_SRC = configdb_rcfile.c
-endif
-
-if HAVE_GNOME_VFS
-    VFS_SRC = vfs_gnome.c
-else
-    VFS_SRC = vfs_stdio.c
-endif
-
-libaudacious_la_SOURCES = \
-	$(CONF_SRC) configdb.h \
-	rcfile.c rcfile.h \
-	$(VFS_SRC) vfs.h \
-	configfile.c \
-	beepctrl.c beepctrl.h \
-	dirbrowser.c dirbrowser.h \
-	util.c util.h \
-	formatter.c formatter.h \
-	titlestring.c titlestring.h \
-	xentry.c xentry.h \
-	xconvert.c xconvert.h \
-	xml_document.c xml_document.h
-
-beepinclude_HEADERS = \
-	vfs.h rcfile.h configdb.h \
-	configfile.h \
-	beepctrl.h dirbrowser.h util.h \
-	formatter.h titlestring.h xml_document.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libaudacious/Makefile.in	Thu Feb 02 17:46:30 2006 -0800
@@ -0,0 +1,53 @@
+include ../mk/rules.mk
+include ../mk/objective.mk
+
+beepincludedir = $(includedir)/audacious
+
+OBJECTIVE_LIBS = libaudacious.so
+OBJECTIVE_LIBS_NOINST = libaudacious.a
+
+LDFLAGS = -Wl,-export-dynamic -Wl,-version-info $(LIBBEEP_MAJOR_VERSION):$(LIBBEEP_MINOR_VERSION):$(LIBBEEP_MICRO_VERSION)
+
+libaudacious_la_LIBADD = \
+	$(GTK_LIBS)      \
+	$(GCONF_LIBS)    \
+	$(GNOMEVFS_LIBS)
+
+INCLUDES = \
+	$(GTK_CFLAGS)        \
+	$(GCONF_CFLAGS)      \
+	$(GNOMEVFS_CFLAGS)   \
+	-I..		      \
+	-I../intl
+
+#if HAVE_GCONF
+#    CONF_SRC = configdb_gconf.c
+#else
+    CONF_SRC = configdb_rcfile.c
+#endif
+
+#if HAVE_GNOME_VFS
+#    VFS_SRC = vfs_gnome.c
+#else
+    VFS_SRC = vfs_stdio.c
+#endif
+
+SOURCES = \
+	$(CONF_SRC) \
+	rcfile.c \
+	$(VFS_SRC) \
+	configfile.c \
+	beepctrl.c \
+	dirbrowser.c \
+	util.c \
+	formatter.c \
+	titlestring.c \
+	xentry.c \
+	xconvert.c \
+	xml_document.c
+
+HEADERS = \
+	vfs.h rcfile.h configdb.h \
+	configfile.h \
+	beepctrl.h dirbrowser.h util.h \
+	formatter.h titlestring.h xml_document.h