gmyth-stream/libgnomevfs2/modules/Makefile.am
branchtrunk
changeset 724 64b061775d06
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gmyth-stream/libgnomevfs2/modules/Makefile.am	Thu May 31 14:31:24 2007 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +INCLUDES = \
     1.5 +	-I$(top_srcdir) \
     1.6 +	-I$(top_builddir) \
     1.7 +	$(GNOME_VFS_CFLAGS) \
     1.8 +	$(LIBMYTHSTREAM_CFLAGS) \
     1.9 +	-D_FILE_OFFSET_BITS=64 \
    1.10 +	-D_BSD_SOURCE \
    1.11 +	-D_LARGEFILE64_SOURCE \
    1.12 +	-D_POSIX_PTHREAD_SEMANTICS \
    1.13 +	-D_REENTRANT \
    1.14 +	-DG_DISABLE_DEPRECATED \
    1.15 +	-DG_LOG_DOMAIN=\"gnome-vfs-modules\"
    1.16 +
    1.17 +EXTRA_DIST = \
    1.18 +	gmythstream-module.conf 
    1.19 +
    1.20 +modulesconfdir = $(sysconfdir)/gnome-vfs-2.0/modules
    1.21 +modulesconf_DATA = \
    1.22 +	gmythstream-module.conf
    1.23 +			
    1.24 +module_flags = -export_dynamic -avoid-version -module -no-undefined
    1.25 +modulesdir = $(libdir)/gnome-vfs-2.0/modules
    1.26 +modules_LTLIBRARIES = libgmythstream.la 
    1.27 +
    1.28 +libgmythstream_la_SOURCES = gmythstream-method.c
    1.29 +libgmythstream_la_LDFLAGS = $(module_flags)
    1.30 +libgmythstream_la_LIBADD = \
    1.31 +	$(GNOME_VFS_LIBS) \
    1.32 +	$(LIBMYTHSTREAM_LIBS)