File: Makefile.am

package info (click to toggle)
parole 0.2.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,652 kB
  • ctags: 2,943
  • sloc: ansic: 14,612; sh: 10,343; cpp: 2,382; makefile: 755
file content (28 lines) | stat: -rw-r--r-- 588 bytes parent folder | download | duplicates (2)
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
noinst_LTLIBRARIES =				\
	sample-plugin.la

INCLUDES =					\
	-I$(top_builddir)			\
	-I$(top_srcdir)				\
	-DG_LOG_DOMAIN=\"sample_plugin\"    	\
	-DLIBEXECDIR=\"$(libexecdir)\"		\
	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"

pluginsdir = 					\
	$(libdir)/parole-$(PAROLE_VERSION_API)

sample_plugin_la_SOURCES =			\
	sample-plugin.c				\
	sample-provider.c			\
	sample-provider.h

sample_plugin_la_CFLAGS =			\
	$(PLATFORM_CFLAGS)			\
	$(GTK_CFLAGS)				\
	$(LIBXFCE4UTIL_CFLAGS)

sample_plugin_la_LDFLAGS =			\
	-avoid-version				\
	-export-dynamic				\
	-module					\
	$(PLATFORM_LDFLAGS)