comparison src/protocols/oscar/Makefile.am @ 2086:424a40f12a6c

[gaim-migrate @ 2096] moving protocols from plugins/ to src/protocols. making it so that you can select which protocols are compiled statically. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 31 Jul 2001 01:00:39 +0000
parents
children 5486d558ecee
comparison
equal deleted inserted replaced
2085:7ebb4322f89b 2086:424a40f12a6c
1 EXTRA_DIST = aim.h aim_cbtypes.h aim_internal.h faimconfig.h md5.h README \
2 CHANGES COPYING BUGS AUTHORS
3
4 pkgdir = $(libdir)/gaim
5
6 CFLAGS += -DAIM_BUILDDATE=\"`date +%Y%m%d`\" -DAIM_BUILDTIME=\"`date +%H%M%S`\" -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS)
7
8 if STATIC_OSCAR
9
10 st = -DSTATIC
11 pkg_LTLIBRARIES =
12 noinst_LIBRARIES = liboscar.a
13
14 liboscar_a_SOURCES = admin.c \
15 adverts.c \
16 auth.c \
17 bos.c \
18 buddylist.c \
19 chat.c \
20 chatnav.c \
21 conn.c \
22 ft.c \
23 im.c \
24 info.c \
25 login.c \
26 md5.c \
27 meta.c \
28 misc.c \
29 msgcookie.c \
30 rxhandlers.c \
31 rxqueue.c \
32 search.c \
33 snac.c \
34 stats.c \
35 tlv.c \
36 txqueue.c \
37 util.c \
38 oscar.c
39
40
41 else
42
43 st =
44 pkg_LTLIBRARIES = liboscar.la
45 noinst_LIBRARIES =
46
47 liboscar_la_SOURCES = admin.c \
48 adverts.c \
49 auth.c \
50 bos.c \
51 buddylist.c \
52 chat.c \
53 chatnav.c \
54 conn.c \
55 ft.c \
56 im.c \
57 info.c \
58 login.c \
59 md5.c \
60 meta.c \
61 misc.c \
62 msgcookie.c \
63 rxhandlers.c \
64 rxqueue.c \
65 search.c \
66 snac.c \
67 stats.c \
68 tlv.c \
69 txqueue.c \
70 util.c \
71 oscar.c
72
73 endif