comparison 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
comparison
equal deleted inserted replaced
5883:f5b0c6073264 5884:d188b000e892
1 grincludedir = $(includedir)/gaim-remote
2
1 plugindir = $(libdir)/gaim 3 plugindir = $(libdir)/gaim
4
5 lib_LTLIBRARIES = libgaim-remote.la
6
7 grinclude_HEADERS = \
8 remote-socket.h \
9 remote.h
10
11 libgaim_remote_la_SOURCES = remote-socket.c
12
2 13
3 gaim_remote_la_LDFLAGS = -module -avoid-version 14 gaim_remote_la_LDFLAGS = -module -avoid-version
4 15
5 if PLUGINS 16 if PLUGINS
6 17
7 plugin_LTLIBRARIES = gaim-remote.la 18 plugin_LTLIBRARIES = gaim-remote.la
8 19
9 gaim_remote_la_SOURCES = \ 20 gaim_remote_la_SOURCES = remote.c
10 remote.c \ 21 gaim_remote_la_LIBADD = -lgaim-remote
11 remote-socket.c \
12 remote-socket.h
13 22
14 endif 23 endif
24
15 25
16 INCLUDES = \ 26 INCLUDES = \
17 -I$(top_srcdir)/src \ 27 -I$(top_srcdir)/src \
18 -I$(top_srcdir)/plugins \ 28 -I$(top_srcdir)/plugins \
19 -DVERSION=\"$(VERSION)\" \ 29 -DVERSION=\"$(VERSION)\" \