diff options
author | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
commit | 528c1e5ff51e213936e800fc5a9a25da99c0bdf2 (patch) | |
tree | 77f8aa456b09367ba81f04d4562fc935f898a951 /plugin-loaders/python/Makefile.am | |
download | pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.bz2 pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.xz |
initial
Diffstat (limited to 'plugin-loaders/python/Makefile.am')
-rwxr-xr-x | plugin-loaders/python/Makefile.am | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/plugin-loaders/python/Makefile.am b/plugin-loaders/python/Makefile.am new file mode 100755 index 00000000..174d57dc --- /dev/null +++ b/plugin-loaders/python/Makefile.am @@ -0,0 +1,36 @@ +# C plugin loader + +SUBDIRS = bindings +loaderdir = $(libdir)/gedit-2/plugin-loaders + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + -I$(top_srcdir)/gedit \ + -I$(top_builddir)/gedit \ + $(GEDIT_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED_CFLAGS) \ + $(PYGTK_CFLAGS) \ + $(PYTHON_CFLAGS) \ + -DGEDIT_PLUGINS_LIBS_DIR=\"$(GEDIT_PLUGINS_LIBS_DIR)\" \ + -DGEDIT_LOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" + +loader_LTLIBRARIES = libpythonloader.la + + +NOINST_H_FILES = \ + gedit-plugin-loader-python.h \ + gedit-plugin-python.h + +libpythonloader_la_SOURCES = \ + gedit-plugin-loader-python.c \ + gedit-plugin-python.c \ + $(NOINST_H_FILES) + +libpythonloader_la_LDFLAGS = $(LOADER_LIBTOOL_FLAGS) +libpythonloader_la_LIBADD = \ + $(GEDIT_LIBS) \ + bindings/gedit.la + +-include $(top_srcdir)/git.mk |