comparison libpurple/protocols/msn/Makefile.am @ 15373:5fe8042783c1

Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author Sean Egan <seanegan@gmail.com>
date Sat, 20 Jan 2007 02:32:10 +0000
parents
children e9c12873fae0
comparison
equal deleted inserted replaced
15372:f79e0f4df793 15373:5fe8042783c1
1 EXTRA_DIST = \
2 Makefile.mingw
3
4 pkgdir = $(libdir)/gaim
5
6 MSNSOURCES = \
7 cmdproc.c \
8 cmdproc.h \
9 command.c \
10 command.h \
11 dialog.c \
12 dialog.h \
13 directconn.c \
14 directconn.h \
15 error.c \
16 error.h \
17 group.c \
18 group.h \
19 history.c \
20 history.h \
21 httpconn.c \
22 httpconn.h \
23 msg.c \
24 msg.h \
25 msn.c \
26 msn.h \
27 nexus.c \
28 nexus.h \
29 notification.c \
30 notification.h \
31 object.c \
32 object.h \
33 page.c \
34 page.h \
35 servconn.c \
36 servconn.h \
37 session.c \
38 session.h \
39 slp.c \
40 slp.h \
41 slpcall.c \
42 slpcall.h \
43 slplink.c \
44 slplink.h \
45 slpmsg.c \
46 slpmsg.h \
47 slpsession.c \
48 slpsession.h \
49 state.c \
50 state.h \
51 switchboard.c \
52 switchboard.h \
53 sync.c \
54 sync.h \
55 table.c \
56 table.h \
57 transaction.c \
58 transaction.h \
59 user.c \
60 user.h \
61 userlist.c \
62 userlist.h \
63 msn-utils.c \
64 msn-utils.h
65
66 AM_CFLAGS = $(st)
67
68 libmsn_la_LDFLAGS = -module -avoid-version
69
70 if STATIC_MSN
71
72 st = -DGAIM_STATIC_PRPL
73 noinst_LIBRARIES = libmsn.a
74 libmsn_a_SOURCES = $(MSNSOURCES)
75 libmsn_a_CFLAGS = $(AM_CFLAGS)
76
77 else
78
79 st =
80 pkg_LTLIBRARIES = libmsn.la
81 libmsn_la_SOURCES = $(MSNSOURCES)
82 libmsn_la_LIBADD = $(GLIB_LIBS)
83
84 endif
85
86 AM_CPPFLAGS = \
87 -I$(top_srcdir)/libpurple \
88 $(GLIB_CFLAGS) \
89 $(DEBUG_CFLAGS)