comparison libpurple/protocols/simple/Makefile.am @ 15373: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
15372:f79e0f4df793 15373:5fe8042783c1
1 EXTRA_DIST = \
2 Makefile.mingw
3
4 pkgdir = $(libdir)/gaim
5
6 SIMPLESOURCES = \
7 simple.c \
8 simple.h \
9 sipmsg.c \
10 sipmsg.h
11
12 AM_CFLAGS = $(st)
13
14 libsimple_la_LDFLAGS = -module -avoid-version
15
16 if STATIC_MSN
17
18 st = -DGAIM_STATIC_PRPL
19 noinst_LIBRARIES = libsimple.a
20 libsimple_a_SOURCES = $(SIMPLESOURCES)
21 libsimple_a_CFLAGS = $(AM_CFLAGS)
22
23 else
24
25 st =
26 pkg_LTLIBRARIES = libsimple.la
27 libsimple_la_SOURCES = $(SIMPLESOURCES)
28 libsimple_la_LIBADD = $(GLIB_LIBS)
29
30 endif
31
32 AM_CPPFLAGS = \
33 -I$(top_srcdir)/libpurple \
34 $(GLIB_CFLAGS) \
35 $(DEBUG_CFLAGS)