Mercurial > pidgin.yaz
annotate plugins/gaim-remote/Makefile.am @ 5884:d188b000e892
[gaim-migrate @ 6316]
There's now a gaim-remote.so (gaim plugin) and a libgaim-remote.so (library
for interfacing with an instance of gaim with gaim-remote.so loaded). The
gaim-remote tool links to the library, as does the plugin. Now there are
far too many things named gaim-remote. The Makefile should also work again.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sun, 15 Jun 2003 07:19:59 +0000 |
parents | 059d95c67cda |
children | 2e23ccbccdec |
rev | line source |
---|---|
5884
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1 grincludedir = $(includedir)/gaim-remote |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2 |
5859 | 3 plugindir = $(libdir)/gaim |
4 | |
5884
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
5 lib_LTLIBRARIES = libgaim-remote.la |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
6 |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
7 grinclude_HEADERS = \ |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
8 remote-socket.h \ |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
9 remote.h |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
10 |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
11 libgaim_remote_la_SOURCES = remote-socket.c |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
12 |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
13 |
5859 | 14 gaim_remote_la_LDFLAGS = -module -avoid-version |
15 | |
16 if PLUGINS | |
17 | |
18 plugin_LTLIBRARIES = gaim-remote.la | |
19 | |
5884
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
20 gaim_remote_la_SOURCES = remote.c |
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
21 gaim_remote_la_LIBADD = -lgaim-remote |
5859 | 22 |
23 endif | |
24 | |
5884
d188b000e892
[gaim-migrate @ 6316]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
25 |
5859 | 26 INCLUDES = \ |
27 -I$(top_srcdir)/src \ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5859
diff
changeset
|
28 -I$(top_srcdir)/plugins \ |
5859 | 29 -DVERSION=\"$(VERSION)\" \ |
30 -DDATADIR=\"$(datadir)\" \ | |
31 $(DEBUG_CFLAGS) |