File: Makefile.am

package info (click to toggle)
pluma 1.8.1%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 19,484 kB
  • ctags: 6,176
  • sloc: ansic: 59,170; python: 6,848; xml: 3,329; makefile: 1,169; sh: 123; perl: 30
file content (36 lines) | stat: -rw-r--r-- 843 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# C plugin loader

SUBDIRS = bindings
loaderdir = $(libdir)/pluma/plugin-loaders

AM_CPPFLAGS = \
	-I$(top_srcdir) 						\
	-I$(top_builddir)						\
	-I$(top_srcdir)/pluma						\
	-I$(top_builddir)/pluma						\
	$(PLUMA_CFLAGS) 						\
	$(WARN_CFLAGS)							\
	$(DISABLE_DEPRECATED_CFLAGS)					\
	$(PYGTK_CFLAGS)							\
	$(PYTHON_CFLAGS)						\
	-DPLUMA_PLUGINS_LIBS_DIR=\"$(PLUMA_PLUGINS_LIBS_DIR)\"		\
	-DPLUMA_LOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"

loader_LTLIBRARIES = libpythonloader.la


NOINST_H_FILES = \
	pluma-plugin-loader-python.h	\
	pluma-plugin-python.h

libpythonloader_la_SOURCES = \
	pluma-plugin-loader-python.c 	\
	pluma-plugin-python.c		\
	$(NOINST_H_FILES)

libpythonloader_la_LDFLAGS = $(LOADER_LIBTOOL_FLAGS)
libpythonloader_la_LIBADD = \
	$(PLUMA_LIBS) 			\
	bindings/pluma.la

-include $(top_srcdir)/git.mk