comparison src/protocols/sametime/Makefile.am @ 10977:2ce8ec01a064

[gaim-migrate @ 12803] adding sametime support to the build committer: Tailor Script <tailor@pidgin.im>
author Christopher O'Brien <siege@pidgin.im>
date Tue, 07 Jun 2005 02:52:39 +0000
parents
children 7831d0969531
comparison
equal deleted inserted replaced
10976:be22eb8fa671 10977:2ce8ec01a064
1
2
3 EXTRA_DIST = # Makefile.mingw
4
5
6 pkgdir = $(libdir)/gaim
7
8
9 noinst_HEADERS = \
10 meanwhile/mw_channel.h \
11 meanwhile/mw_cipher.h \
12 meanwhile/mw_common.h \
13 meanwhile/mw_debug.h \
14 meanwhile/mw_error.h \
15 meanwhile/mw_message.h \
16 meanwhile/mw_service.h \
17 meanwhile/mw_session.h \
18 meanwhile/mw_srvc_aware.h \
19 meanwhile/mw_srvc_conf.h \
20 meanwhile/mw_srvc_ft.h \
21 meanwhile/mw_srvc_im.h \
22 meanwhile/mw_srvc_resolve.h \
23 meanwhile/mw_srvc_store.h \
24 meanwhile/mw_st_list.h \
25 meanwhile/mw_util.h \
26 sametime.h
27
28 meanwhile_SOURCES = \
29 meanwhile/channel.c \
30 meanwhile/cipher.c \
31 meanwhile/common.c \
32 meanwhile/error.c \
33 meanwhile/message.c \
34 meanwhile/mw_debug.c \
35 meanwhile/mw_util.c \
36 meanwhile/service.c \
37 meanwhile/session.c \
38 meanwhile/srvc_aware.c \
39 meanwhile/srvc_conf.c \
40 meanwhile/srvc_ft.c \
41 meanwhile/srvc_im.c \
42 meanwhile/srvc_store.c \
43 meanwhile/srvc_resolve.c \
44 meanwhile/st_list.c
45
46 sametime_SOURCES = \
47 $(meanwhile_SOURCES) \
48 sametime.c
49
50
51 if STATIC_SAMETIME
52
53 st = -DGAIM_STATIC_PRPL
54 noinst_LIBRARIES = libsametime.a
55 libsametime_a_SOURCES = $(sametime_SOURCES)
56 libsametime_a_CFLAGS = $(AM_CFLAGS)
57
58 else
59
60 st =
61 pkg_LTLIBRARIES = libsametime.la
62 libsametime_la_SOURCES = $(sametime_SOURCES)
63
64 endif
65
66
67 libsametime_la_LDFLAGS = -module -avoid-version -no-undefined
68 libsametime_la_LIBADD = $(GLIB_LIBS)
69
70
71 AM_CFLAGS = \
72 $(GLIB_CFLAGS) \
73 $(DEBUG_CFLAGS) \
74 -I$(top_srcdir)/src \
75 -Imeanwhile
76
77
78 AM_CPPFLAGS = \
79 -DG_LOG_DOMAIN=\"meanwhile\" \
80 $(st)
81