diff -r 000000000000 -r c98ddd4a9513 gmyth-stream/libgnomevfs2/modules/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmyth-stream/libgnomevfs2/modules/Makefile.am Tue May 15 15:45:34 2007 +0100 @@ -0,0 +1,29 @@ +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + $(GNOME_VFS_CFLAGS) \ + $(LIBMYTHSTREAM_CFLAGS) \ + -D_FILE_OFFSET_BITS=64 \ + -D_BSD_SOURCE \ + -D_LARGEFILE64_SOURCE \ + -D_POSIX_PTHREAD_SEMANTICS \ + -D_REENTRANT \ + -DG_DISABLE_DEPRECATED \ + -DG_LOG_DOMAIN=\"gnome-vfs-modules\" + +EXTRA_DIST = \ + gmythstream-module.conf + +modulesconfdir = $(sysconfdir)/gnome-vfs-2.0/modules +modulesconf_DATA = \ + gmythstream-module.conf + +module_flags = -export_dynamic -avoid-version -module -no-undefined +modulesdir = $(libdir)/gnome-vfs-2.0/modules +modules_LTLIBRARIES = libgmythstream.la + +libgmythstream_la_SOURCES = gmythstream-method.c +libgmythstream_la_LDFLAGS = $(module_flags) +libgmythstream_la_LIBADD = \ + $(GNOME_VFS_LIBS) \ + $(LIBMYTHSTREAM_LIBS)