gmyth-stream/libgnomevfs2/modules/Makefile.am
author melunko
Thu Apr 19 21:22:26 2007 +0100 (2007-04-19)
branchtrunk
changeset 576 6ee1dc7357e8
permissions -rw-r--r--
[svn r581] added GMYTH_USE_DEBUG test at gmyth_program_info_print() and gmyth_channel_info_print()
     1 INCLUDES = \
     2 	-I$(top_srcdir) \
     3 	-I$(top_builddir) \
     4 	$(GNOME_VFS_CFLAGS) \
     5 	$(LIBMYTHSTREAM_CFLAGS) \
     6 	-D_FILE_OFFSET_BITS=64 \
     7 	-D_BSD_SOURCE \
     8 	-D_LARGEFILE64_SOURCE \
     9 	-D_POSIX_PTHREAD_SEMANTICS \
    10 	-D_REENTRANT \
    11 	-DG_DISABLE_DEPRECATED \
    12 	-DG_LOG_DOMAIN=\"gnome-vfs-modules\"
    13 
    14 EXTRA_DIST = \
    15 	gmythstream-module.conf 
    16 
    17 modulesconfdir = $(sysconfdir)/gnome-vfs-2.0/modules
    18 modulesconf_DATA = \
    19 	gmythstream-module.conf
    20 			
    21 module_flags = -export_dynamic -avoid-version -module -no-undefined
    22 modulesdir = $(libdir)/gnome-vfs-2.0/modules
    23 modules_LTLIBRARIES = libgmythstream.la 
    24 
    25 libgmythstream_la_SOURCES = gmythstream-method.c
    26 libgmythstream_la_LDFLAGS = $(module_flags)
    27 libgmythstream_la_LIBADD = \
    28 	$(GNOME_VFS_LIBS) \
    29 	$(LIBMYTHSTREAM_LIBS)