Mercurial > pidgin
annotate src/protocols/novell/Makefile.am @ 10155:e05a325ac5a6
[gaim-migrate @ 11235]
Silvestre Zabala submitted debian bug #278378 saying the German
translation incorrectly translated "Mute sounds." Any German
speakers care to verify that this fix is correct?
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 04 Nov 2004 04:10:32 +0000 |
parents | 54fb1f466953 |
children | 2cc05a9e944d |
rev | line source |
---|---|
8675 | 1 EXTRA_DIST = \ |
2 Makefile.mingw | |
3 | |
4 pkgdir = $(libdir)/gaim | |
5 | |
6 NOVELLSOURCES = \ | |
7 nmfield.h \ | |
8 nmfield.c \ | |
9 nmconn.h \ | |
10 nmconn.c \ | |
11 nmconference.h \ | |
12 nmconference.c \ | |
13 nmcontact.h \ | |
14 nmcontact.c \ | |
15 nmevent.h \ | |
16 nmevent.c \ | |
17 nmmessage.h \ | |
18 nmmessage.c \ | |
19 nmrequest.h \ | |
20 nmrequest.c \ | |
9268 | 21 nmrtf.h \ |
22 nmrtf.c \ | |
8675 | 23 nmuser.h \ |
24 nmuser.c \ | |
25 nmuserrecord.h \ | |
26 nmuserrecord.c \ | |
27 novell.c | |
28 | |
29 AM_CFLAGS = $(st) | |
30 | |
31 libnovell_la_LDFLAGS = -module -avoid-version | |
32 | |
33 if STATIC_NOVELL | |
34 | |
8683
76935eb1bd40
[gaim-migrate @ 9436]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
35 st = -DGAIM_STATIC_PRPL |
8675 | 36 noinst_LIBRARIES = libnovell.a |
37 pkg_LTLIBRARIES = | |
38 | |
39 libnovell_a_SOURCES = $(NOVELLSOURCES) | |
40 libnovell_a_CFLAGS = $(AM_CFLAGS) | |
41 | |
42 else | |
43 | |
44 st = | |
45 pkg_LTLIBRARIES = libnovell.la | |
46 noinst_LIBRARIES = | |
47 | |
48 libnovell_la_SOURCES = $(NOVELLSOURCES) | |
49 | |
50 endif | |
51 | |
52 AM_CPPFLAGS = \ | |
53 -I$(top_srcdir)/src \ | |
54 $(DEBUG_CFLAGS) \ | |
55 $(GLIB_CFLAGS) |