diff options
author | Perberos <[email protected]> | 2011-12-01 23:03:59 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 23:03:59 -0300 |
commit | 52d7aadcc57f3fa09653d315fc1a7fef52ae6bca (patch) | |
tree | 93f7e38ac79b2592d48d22e6912aeddfd227ffab /egg/Makefile.am | |
download | mate-session-manager-52d7aadcc57f3fa09653d315fc1a7fef52ae6bca.tar.bz2 mate-session-manager-52d7aadcc57f3fa09653d315fc1a7fef52ae6bca.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'egg/Makefile.am')
-rw-r--r-- | egg/Makefile.am | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/egg/Makefile.am b/egg/Makefile.am new file mode 100644 index 0000000..7bddab4 --- /dev/null +++ b/egg/Makefile.am @@ -0,0 +1,52 @@ +platform_defines = -DEGG_SM_CLIENT_BACKEND_XSMP +platform_ltlibraries = \ + libeggdesktopfile.la \ + libeggsmclient-mate.la +platform_libs = \ + libeggdesktopfile.la \ + $(SM_LIBS) \ + $(ICE_LIBS) +platform_sources = eggsmclient-xsmp.c + +INCLUDES = \ + -DG_LOG_DOMAIN=\""EggSMClient"\" \ + $(platform_defines) \ + $(EGG_SMCLIENT_CFLAGS) \ + $(SM_CFLAGS) \ + $(ICE_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED_CFLAGS) + +noinst_LTLIBRARIES = \ + libeggsmclient.la \ + $(platform_ltlibraries) + +libeggsmclient_la_LIBADD = \ + $(EGG_SMCLIENT_LIBS) \ + $(SM_LIBS) \ + $(ICE_LIBS) \ + $(platform_libs) + +libeggsmclient_la_SOURCES = \ + eggsmclient.c \ + eggsmclient.h \ + eggsmclient-private.h \ + $(platform_sources) + +libeggsmclient_mate_la_LIBADD = \ + $(libeggsmclient_la_LIBADD) + +libeggsmclient_mate_la_SOURCES = \ + eggsmclient.c \ + eggsmclient.h \ + eggsmclient-private.h \ + $(platform_sources) + +libeggdesktopfile_la_LIBADD = \ + $(EGG_SMCLIENT_LIBS) + +libeggdesktopfile_la_SOURCES = \ + eggdesktopfile.c \ + eggdesktopfile.h + +-include $(top_srcdir)/git.mk |