comparison src/protocols/simple/Makefile.am @ 11181:e5bbe5070e04

[gaim-migrate @ 13292] first import sip/simple prpl files. still buggy and deactivated by default. committer: Tailor Script <tailor@pidgin.im>
author Thomas Butter <tbutter>
date Tue, 02 Aug 2005 20:24:51 +0000
parents
children 0f03b5492130
comparison
equal deleted inserted replaced
11180:5d103f550f6a 11181:e5bbe5070e04
1 pkgdir = $(libdir)/gaim
2
3 SIMPLESOURCES = \
4 simple.c \
5 simple.h \
6 sipmsg.c \
7 sipmsg.h \
8 digcalc.c \
9 digcalc.h \
10 srvresolve.h \
11 srvresolve.c
12
13 AM_CFLAGS = $(st) -lresolv
14
15 libsimple_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
16
17 if STATIC_MSN
18
19 st = -DGAIM_STATIC_PRPL
20 noinst_LIBRARIES = libsimple.a
21 libsimple_a_SOURCES = $(SIMPLESOURCES)
22 libsimple_a_CFLAGS = $(AM_CFLAGS)
23
24 else
25
26 st =
27 pkg_LTLIBRARIES = libsimple.la
28 libsimple_la_SOURCES = $(SIMPLESOURCES)
29
30 endif
31
32 AM_CPPFLAGS = \
33 -I$(top_srcdir)/src \
34 $(GLIB_CFLAGS) \
35 $(DEBUG_CFLAGS)