diff options
author | Perberos <[email protected]> | 2011-11-09 18:17:43 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-09 18:17:43 -0300 |
commit | f6ce926719943751cf65cacde7fae050593eb2d6 (patch) | |
tree | 9224d1751678cf2d1fbd0431f128b711311c0287 /cut-n-paste/smclient/Makefile.am | |
download | atril-f6ce926719943751cf65cacde7fae050593eb2d6.tar.bz2 atril-f6ce926719943751cf65cacde7fae050593eb2d6.tar.xz |
inicial
Diffstat (limited to 'cut-n-paste/smclient/Makefile.am')
-rw-r--r-- | cut-n-paste/smclient/Makefile.am | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/cut-n-paste/smclient/Makefile.am b/cut-n-paste/smclient/Makefile.am new file mode 100644 index 00000000..498ed756 --- /dev/null +++ b/cut-n-paste/smclient/Makefile.am @@ -0,0 +1,42 @@ +noinst_LTLIBRARIES = libsmclient.la + +NULL = + +if WITH_SMCLIENT +libsmclient_la_SOURCES = \ + eggsmclient.c \ + eggsmclient.h \ + eggsmclient-private.h \ + $(NULL) + +libsmclient_la_CPPFLAGS = \ + -DG_LOG_DOMAIN=\""EggSMClient"\" \ + $(DISABLE_DEPRECATED) \ + $(AM_CPPFLAGS) + +libsmclient_la_CFLAGS = \ + $(SMCLIENT_CFLAGS) \ + $(WARNING_CFLAGS) \ + $(AM_CFLAGS) + +libsmclient_la_LIBADD = \ + $(SMCLIENT_LIBS) + +if WITH_SMCLIENT_XSMP +libsmclient_la_SOURCES += \ + eggdesktopfile.c \ + eggdesktopfile.h \ + eggsmclient-xsmp.c \ + $(NULL) +libsmclient_la_CPPFLAGS += -DEGG_SM_CLIENT_BACKEND_XSMP +endif +if WITH_SMCLIENT_WIN32 +libsmclient_la_SOURCES += eggsmclient-win32.c +endif +if WITH_SMCLIENT_QUARTZ +libsmclient_la_SOURCES += eggsmclient-osx.c +endif + +endif # WITH_SMCLIENT + +-include $(top_srcdir)/git.mk |