]> sjero.net Git - linphone/blob - coreapi/plugins/buddylookup/src/Makefile.am
purge out p2pproxy
[linphone] / coreapi / plugins / buddylookup / src / Makefile.am
1 pluginsdir=$(LINPHONE_PLUGINS_DIR)
2
3 plugins_LTLIBRARIES=libbuddylookup.la
4
5 libbuddylookup_la_SOURCES=lookup.c
6
7 libbuddylookup_la_LIBADD=$(LIBSOUP_LIBS) $(LIBLINPHONE_LIBS) 
8
9 libbuddylookup_la_LDFLAGS=-no-undefined
10
11 AM_CFLAGS= $(LIBLINPHONE_CFLAGS) $(LIBSOUP_CFLAGS)
12
13 if BUILD_WIN32
14 #hack for mingw to force plugins dll to be where we want them to be.
15 install-data-hook:
16         mv $(DESTDIR)$(pluginsdir)/../bin/libbuddylookup*.dll \
17         $(DESTDIR)$(pluginsdir)/.
18         rm -f $(DESTDIR)$(pluginsdir)/*.la
19         rm -f $(DESTDIR)$(pluginsdir)/*.dll.a
20 endif