~ubuntu-branches/ubuntu/trusty/irssi-plugin-xmpp/trusty

« back to all changes in this revision

Viewing changes to src/core/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): David Ammouial
  • Date: 2009-05-12 12:14:44 UTC
  • mfrom: (1.1.3 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090512121444-5jeho5h3zsy4oij7
Tags: 0.13+cvs20090406-1
* New CVS snapshot, built against irssi-dev 0.8.13:
  - New features and bugfixes.
  - Fix segfault when successfully identified (Closes: #521227).
  - Fix build error (Closes: #527697)
* Depend on irssi >=0.8.13, build-depend on irssi-dev >=0.8.13.
* Bump Standards-Version to 3.8.1 (no changes needed).
* Add INTERNAL to documentation files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile,v 1.14 2008/01/07 07:29:13 errtu Exp $
 
1
# $Id: Makefile,v 1.29 2009/04/05 14:15:35 cdidier Exp $
2
2
 
3
3
LIB= xmpp_core
4
 
SRCS=   loudmouth-tools.c \
5
 
        xmpp-channels.c \
6
 
        xmpp-commands.c \
 
4
SRCS=   xmpp-commands.c \
7
5
        xmpp-core.c \
8
 
        xmpp-nicklist.c \
9
 
        xmpp-ping.c \
10
 
        xmpp-protocol.c \
11
6
        xmpp-queries.c \
12
 
        xmpp-rosters.c \
13
 
        xmpp-rosters-tools.c \
14
7
        xmpp-servers.c \
15
8
        xmpp-servers-reconnect.c \
16
 
        xmpp-session.c \
17
9
        xmpp-settings.c \
18
 
        xmpp-tools.c \
19
 
        xmpp-xep.c
 
10
        loudmouth-tools.c \
 
11
        protocol.c \
 
12
        rosters.c \
 
13
        rosters-tools.c \
 
14
        stanzas.c \
 
15
        tools.c \
 
16
        xep/chatstates.c \
 
17
        xep/composing.c \
 
18
        xep/datetime.c \
 
19
        xep/delay.c \
 
20
        xep/disco.c \
 
21
        xep/muc-commands.c \
 
22
        xep/muc-events.c \
 
23
        xep/muc-nicklist.c \
 
24
        xep/muc-reconnect.c \
 
25
        xep/muc.c \
 
26
        xep/oob.c \
 
27
        xep/ping.c \
 
28
        xep/registration.c \
 
29
        xep/tool_datalist.c \
 
30
        xep/vcard.c \
 
31
        xep/version.c \
 
32
        xep/xep.c
20
33
 
21
34
LIB_LIBS = `pkg-config --libs loudmouth-1.0`
22
35