File: Makefile.am

package info (click to toggle)
gedit 2.8.3-4sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 17,844 kB
  • ctags: 2,667
  • sloc: ansic: 31,450; xml: 16,625; sh: 10,872; makefile: 588
file content (24 lines) | stat: -rw-r--r-- 728 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Change Case plugin
plugindir = $(libdir)/gedit-2/plugins

INCLUDES = \
	-I$(top_srcdir) 				\
	$(GEDIT_CFLAGS) 				\
	$(WARN_CFLAGS)					\
	$(DISABLE_DEPRECATED_CFLAGS)			\
	-DGNOME_ICONDIR=\""$(datadir)/pixmaps"\" 			

plugin_LTLIBRARIES = libchangecase.la

libchangecase_la_SOURCES = changecase.c
libchangecase_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)

plugin_in_files = changecase.gedit-plugin.desktop.in

%.gedit-plugin: %.gedit-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache

plugin_DATA = $(plugin_in_files:.gedit-plugin.desktop.in=.gedit-plugin)

EXTRA_DIST = $(plugin_in_files)

CLEANFILES = $(plugin_DATA)