diff options
author | Jan Lipovsky <janlipovsky@gmail.com> | 2010-05-28 13:59:28 +0200 |
---|---|---|
committer | Jan Lipovsky <janlipovsky@gmail.com> | 2010-05-28 13:59:28 +0200 |
commit | ba2bbc75e63b968d03da1094fcb8f28a1f734b39 (patch) | |
tree | b2c56735780032dab543167bafd3139f7f73903e /nautilus-plugin/Makefile.am | |
parent | b282327da5b515ce3288b1084bf1e21cf01c49af (diff) | |
download | sfshare-master.tar.gz sfshare-master.tar.xz sfshare-master.zip |
Diffstat (limited to 'nautilus-plugin/Makefile.am')
-rwxr-xr-x | nautilus-plugin/Makefile.am | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/nautilus-plugin/Makefile.am b/nautilus-plugin/Makefile.am index 114bee3..90dda85 100755 --- a/nautilus-plugin/Makefile.am +++ b/nautilus-plugin/Makefile.am @@ -1,3 +1,32 @@ -AUTOMAKE_OPTIONS = foreign +NULL = + +INCLUDES = \ + -DDATADIR=\"$(datadir)\" \ + -DBINDIR=\"$(bindir)\" \ + -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED_CFLAGS) \ + $(GLIB_CFLAGS) \ + $(GTK_CFLAGS) \ + $(NAUTILUS_CFLAGS) \ + $(NULL) + +LIBADD = \ + $(GLIB_LIBS) \ + $(GTK_LIBS) \ + $(NAUTILUS_LIBS) \ + $(NULL) + + +nautilus_extensiondir = $(NAUTILUS_EXTENSION_DIR) +nautilus_extension_LTLIBRARIES = libnautilus_sfshare.la + +libnautilus_sfshare_la_SOURCES = \ + nautilus_sfshare.c \ + $(NULL) + +libnautilus_sfshare_la_LDFLAGS = -module -avoid-version + -SUBDIRS = src |