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/c/Makefile.am | |
download | pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.bz2 pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.xz |
initial
Diffstat (limited to 'plugin-loaders/c/Makefile.am')
-rwxr-xr-x | plugin-loaders/c/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/plugin-loaders/c/Makefile.am b/plugin-loaders/c/Makefile.am new file mode 100755 index 00000000..7760aefe --- /dev/null +++ b/plugin-loaders/c/Makefile.am @@ -0,0 +1,24 @@ +# C plugin loader + +loaderdir = $(libdir)/gedit-2/plugin-loaders + +INCLUDES = \ + -I$(top_srcdir) \ + $(GEDIT_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED_CFLAGS) \ + -DGEDIT_LOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" + +loader_LTLIBRARIES = libcloader.la + +NOINST_H_FILES = \ + gedit-plugin-loader-c.h + +libcloader_la_SOURCES = \ + gedit-plugin-loader-c.c \ + $(NOINST_H_FILES) + +libcloader_la_LDFLAGS = $(LOADER_LIBTOOL_FLAGS) +libcloader_la_LIBADD = $(GEDIT_LIBS) + +-include $(top_srcdir)/git.mk |