Mercurial > pidgin.yaz
annotate src/protocols/trepia/Makefile.am @ 10636:0f5c5e6fb27f
[gaim-migrate @ 12118]
The strftime warnings fiunally got to me, so I made gaim_strftime to work
around it.
Turns out KingAnt had already discovered this solution for oscar.c but left
it #iffed out.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 24 Feb 2005 01:11:17 +0000 |
parents | 6b1ecf40f3ba |
children |
rev | line source |
---|---|
7381
75733c68479a
[gaim-migrate @ 7976]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7254
diff
changeset
|
1 EXTRA_DIST = \ |
75733c68479a
[gaim-migrate @ 7976]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7254
diff
changeset
|
2 Makefile.mingw |
75733c68479a
[gaim-migrate @ 7976]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7254
diff
changeset
|
3 |
5730 | 4 pkgdir = $(libdir)/gaim |
5 | |
6 TREPIASOURCES = \ | |
7 profile.c \ | |
8 profile.h \ | |
9 trepia.c | |
10 | |
11 AM_CFLAGS = $(st) | |
12 | |
13 libtrepia_la_LDFLAGS = -module -avoid-version | |
14 | |
15 if STATIC_TREPIA | |
16 | |
8082 | 17 st = -DGAIM_STATIC_PRPL |
5730 | 18 noinst_LIBRARIES = libtrepia.a |
19 libtrepia_a_SOURCES = $(TREPIASOURCES) | |
20 libtrepia_a_CFLAGS = $(AM_CFLAGS) | |
21 | |
22 else | |
23 | |
24 st = | |
25 pkg_LTLIBRARIES = libtrepia.la | |
26 libtrepia_la_SOURCES = $(TREPIASOURCES) | |
27 | |
28 endif | |
29 | |
30 AM_CPPFLAGS = \ | |
31 -I$(top_srcdir)/src \ | |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
32 $(GLIB_CFLAGS) \ |
5730 | 33 $(DEBUG_CFLAGS) |