File: Makefile.am

package info (click to toggle)
anjuta 1.2.2-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 24,732 kB
  • ctags: 12,398
  • sloc: ansic: 82,587; cpp: 35,104; sh: 8,591; xml: 7,210; makefile: 981; python: 157
file content (33 lines) | stat: -rw-r--r-- 883 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
29
30
31
32
33
#
# Sample Makefile for a gIDE plugin.
#
# Where can we find the gIDE include files.
#

ANJUTA_SRC_DIR = $(top_srcdir)/src

#
# Where to install the plugin
#
plugindir = $(prefix)/@NO_PREFIX_PACKAGE_PLUGIN_DIR@

# NOTE :
# The naming convention is very intentional
# We are forced to use the prefix 'lib' by automake and libtool
#    There is probably a way to avoid it but it is not worth to effort
#    to find out.
# The 'anjuta_' prfix is a safety measure to avoid conflicts where the
#    plugin 'libpython.so' needs to link with the real 'libpython.so'

plugin_LTLIBRARIES = libanjuta_patch.la

libanjuta_patch_la_SOURCES = patch-plugin.c

INCLUDES = 						\
	-I$(ANJUTA_SRC_DIR)				\
	-I$(top_srcdir)	\
	-I$(top_srcdir)/tagmanager/include      \
	-DGNOMELOCALEDIR=\""$(datadir)/locale"\" 	\
	-DVERSION=\""$(VERSION)"\"             		\
	-I$(includedir)					\
	$(ANJUTA_CFLAGS)