Mercurial > pidgin.yaz
comparison libpurple/protocols/sametime/Makefile.am @ 15374:5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sat, 20 Jan 2007 02:32:10 +0000 |
parents | |
children | e9c12873fae0 |
comparison
equal
deleted
inserted
replaced
15373:f79e0f4df793 | 15374:5fe8042783c1 |
---|---|
1 | |
2 EXTRA_DIST = Makefile.mingw | |
3 | |
4 | |
5 pkgdir = $(libdir)/gaim | |
6 | |
7 | |
8 noinst_HEADERS = sametime.h | |
9 | |
10 SAMETIMESOURCES = sametime.c | |
11 | |
12 | |
13 if STATIC_SAMETIME | |
14 | |
15 st = -DGAIM_STATIC_PRPL | |
16 noinst_LIBRARIES = libsametime.a | |
17 libsametime_a_SOURCES = $(SAMETIMESOURCES) | |
18 libsametime_a_CFLAGS = $(AM_CFLAGS) | |
19 | |
20 else | |
21 | |
22 st = | |
23 pkg_LTLIBRARIES = libsametime.la | |
24 libsametime_la_SOURCES = $(SAMETIMESOURCES) | |
25 | |
26 | |
27 endif | |
28 | |
29 | |
30 libsametime_la_LDFLAGS = -module -avoid-version | |
31 libsametime_la_LIBADD = $(GLIB_LIBS) $(MEANWHILE_LIBS) | |
32 | |
33 | |
34 AM_CFLAGS = \ | |
35 $(GLIB_CFLAGS) $(MEANWHILE_CFLAGS) \ | |
36 $(DEBUG_CFLAGS) \ | |
37 -I$(top_srcdir)/libpurple | |
38 | |
39 | |
40 AM_CPPFLAGS = \ | |
41 -DG_LOG_DOMAIN=\"sametime\" \ | |
42 $(st) | |
43 |