Mercurial > pidgin.yaz
annotate src/protocols/gg/Makefile.am @ 2393:a7ecfd3f7714
[gaim-migrate @ 2406]
Arkadiusz Miskiewicz\'s Gadu-Gadu plugin. I was able to figure out enough polish to be able to download Gadu-Gadu, create an account, and test the plugin. Imagine my shock when I got my info and it said I was a woman. Whoops.
Also splitting plugins.c so that non-gtk stuff is in modules.c. gaim-core is almost ready for protocol implantaion.
Also fixing an IRC bug.
Also patiently waiting for anoncvs_gaim's lock in /cvsroot/gaim/gaim/pixmaps
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sat, 29 Sep 2001 23:06:30 +0000 |
parents | |
children | 8229710b343b |
rev | line source |
---|---|
2393 | 1 EXTRA_DIST = protocol.txt |
2 | |
3 pkgdir = $(libdir)/gaim | |
4 | |
5 CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) | |
6 libgg_la_LDFLAGS = -avoid-version | |
7 | |
8 if STATIC_GG | |
9 | |
10 st = -DSTATIC | |
11 pkg_LTLIBRARIES = | |
12 noinst_LIBRARIES = libgg.a | |
13 | |
14 libgg_a_SOURCES = libgg.c \ | |
15 libgg.h \ | |
16 gg.c | |
17 | |
18 else | |
19 | |
20 st = | |
21 pkg_LTLIBRARIES = libgg.la | |
22 noinst_LIBRARIES = | |
23 | |
24 libgg_la_SOURCES = libgg.c \ | |
25 libgg.h \ | |
26 gg.c | |
27 | |
28 endif |