diff options
author | Perberos <[email protected]> | 2011-12-01 20:53:10 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 20:53:10 -0300 |
commit | 916e2eafe251b44f9d0339282f5d00723899caec (patch) | |
tree | d650ca8c97d834499ca107a2a59a41c86c1fc4a9 /capplet/Makefile.am | |
download | libmatekbd-916e2eafe251b44f9d0339282f5d00723899caec.tar.bz2 libmatekbd-916e2eafe251b44f9d0339282f5d00723899caec.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'capplet/Makefile.am')
-rw-r--r-- | capplet/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/capplet/Makefile.am b/capplet/Makefile.am new file mode 100644 index 0000000..95e6547 --- /dev/null +++ b/capplet/Makefile.am @@ -0,0 +1,46 @@ +bin_PROGRAMS = matekbd-indicator-plugins-capplet + +uidir="$(pkgdatadir)/ui" +ui_DATA = matekbd-indicator-plugins.ui \ + matekbd-indicator-plugins_add.ui + +@INTLTOOL_DESKTOP_RULE@ + +desktopdir = $(datadir)/applications +Desktop_in_files = matekbd-indicator-plugins-capplet.desktop.in +desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop) + +matekbd_indicator_plugins_capplet_CFLAGS = \ + -I$(top_srcdir) -Wall \ + $(MATECONF_CFLAGS) \ + $(GTK_CFLAGS) \ + $(LIBXKLAVIER_CFLAGS) \ + -I$(top_srcdir)/intl \ + -DSYS_PLUGIN_DIR=\"$(libdir)/matekbd/\" \ + -DG_LOG_DOMAIN=\"MateKbdIndicatorPluginsCapplet\" \ + -DPREFIX=\"$(prefix)\" \ + -DUIDIR=\"$(uidir)\" \ + -DDATADIR=\"$(datadir)\" \ + -DSYSCONFDIR=\"$(sysconfdir)\" \ + -DMATELOCALEDIR="\"$(datadir)/locale\"" \ + -DLIBDIR=\"$(libdir)\" + +matekbd_indicator_plugins_capplet_SOURCES = matekbd-indicator-plugins-capplet.c \ + matekbd-indicator-plugins-add.c \ + matekbd-indicator-plugins-capplet.h + +matekbd_indicator_plugins_capplet_LDFLAGS = -export-dynamic + +matekbd_indicator_plugins_capplet_LDADD = \ + $(MATECONF_LIBS) \ + $(GTK_LIBS) \ + $(LIBXKLAVIER_LIBS) \ + $(top_builddir)/libmatekbd/libmatekbd.la \ + $(top_builddir)/libmatekbd/libmatekbdui.la + +EXTRA_DIST = matekbd-indicator-plugins-capplet.desktop.in.in \ + $(ui_DATA) \ + $(pixmap_DATA) + +DISTCLEANFILES = $(desktop_DATA) + |