comparison libpurple/protocols/simple/Makefile.am @ 26043:adf153852bcf

propagate from branch 'im.pidgin.pidgin' (head df86c6f1de324e87828356aa8d5c369abd533b58) to branch 'im.pidgin.pidgin.vv' (head 5bf87e309f2fee61842cccf4992de4866349570c)
author Mike Ruprecht <maiku@soc.pidgin.im>
date Mon, 24 Nov 2008 10:59:08 +0000
parents 92e71f6e10d4 2b62300d2c19
children e33a91b8b8f6
comparison
equal deleted inserted replaced
26042:bee5ab815291 26043:adf153852bcf
1 EXTRA_DIST = \ 1 EXTRA_DIST = \
2 Makefile.mingw 2 Makefile.mingw
3 3
4 pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) 4 pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
5 5
6 SIMPLESOURCES = \ 6 SIMPLESOURCES = \
7 simple.c \ 7 simple.c \
8 simple.h \ 8 simple.h \
9 sipmsg.c \ 9 sipmsg.c \
10 sipmsg.h 10 sipmsg.h
11 11
12 AM_CFLAGS = $(st) 12 AM_CFLAGS = $(st)
13 13
14 libsimple_la_LDFLAGS = -module -avoid-version 14 libsimple_la_LDFLAGS = -module -avoid-version
15 15
16 if STATIC_MSN 16 if STATIC_MSN
17 17
18 st = -DPURPLE_STATIC_PRPL 18 st = -DPURPLE_STATIC_PRPL
19 noinst_LIBRARIES = libsimple.a 19 noinst_LTLIBRARIES = libsimple.la
20 libsimple_a_SOURCES = $(SIMPLESOURCES) 20 libsimple_la_SOURCES = $(SIMPLESOURCES)
21 libsimple_a_CFLAGS = $(AM_CFLAGS) 21 libsimple_la_CFLAGS = $(AM_CFLAGS)
22 22
23 else 23 else
24 24
25 st = 25 st =
26 pkg_LTLIBRARIES = libsimple.la 26 pkg_LTLIBRARIES = libsimple.la
27 libsimple_la_SOURCES = $(SIMPLESOURCES) 27 libsimple_la_SOURCES = $(SIMPLESOURCES)
28 libsimple_la_LIBADD = $(GLIB_LIBS) 28 libsimple_la_LIBADD = $(GLIB_LIBS)
29 29
30 endif 30 endif
31 31