Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/smclient/Makefile.am
blob: 449392276bcd14bf8165cef0ad8e8038cbdcaa2a (plain)
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
noinst_LTLIBRARIES = libsmclient.la

if OS_WIN32
platform_sources = eggsmclient-win32.c
else
platform_sources = 		\
	eggsmclient-xsmp.c	\
	eggdesktopfile.c	\
	eggdesktopfile.h
platform_defines = -DEGG_SM_CLIENT_BACKEND_XSMP
endif

libsmclient_la_SOURCES = 	\
	eggsmclient.c		\
	eggsmclient.h		\
	eggsmclient-private.h	\
	$(platform_sources)

libsmclient_la_CFLAGS =				\
	-DG_LOG_DOMAIN=\""EggSMClient"\"	\
	$(platform_defines)			\
	$(SMCLIENT_CFLAGS)			\
	$(WARNING_CFLAGS)			\
	$(DISABLE_DEPRECATED)

libsmclient_la_LIBADD = $(SMCLIENT_LIBS)

EXTRA_DIST =			\
	eggsmclient-win32.c	\
	eggsmclient-xsmp.c	\
	eggdesktopfile.c	\
	eggdesktopfile.h