]> sjero.net Git - linphone/blob - linphone/coreapi/plugins/buddylookup/Makefile.am
remove mediastreamer2 and add it as a submodule instead.
[linphone] / linphone / coreapi / plugins / buddylookup / Makefile.am
1 SUBDIRS=src
2
3
4
5 INSTALLDIR=$(shell cd $(top_builddir) && pwd)/$(PACKAGE)-install
6 INSTALLDIR_WITH_PREFIX=$(INSTALLDIR)/$(prefix)
7 ZIPFILE=$(shell cd $(top_builddir) && pwd)/$(PACKAGE)-win32-$(VERSION).zip
8 ZIP_EXCLUDED=include 
9 PLUGIN_DEPS_PREFIX=/usr/bin
10 PLUGIN_DEPS=    libsoup-2.4-1.dll \
11                 libgcrypt-11.dll \
12                 libgnutls-extra-26.dll \
13                 libgnutlsxx-26.dll \
14                 libtasn1-3.dll \
15                 libgnutls-26.dll \
16                 libgnutls-openssl-26.dll \
17                 libgpg-error-0.dll
18
19
20 zip:
21         rm -f $(ZIPFILE)
22         rm -rf $(INSTALLDIR)
23         mkdir -p $(INSTALLDIR)
24         make install DESTDIR=$(INSTALLDIR)
25         mkdir -p $(INSTALLDIR_WITH_PREFIX)/bin
26         cd $(PLUGIN_DEPS_PREFIX) && \
27                 cp -f $(PLUGIN_DEPS) $(INSTALLDIR_WITH_PREFIX)/bin/.
28         cd $(INSTALLDIR)/$(prefix) && rm -rf $(ZIP_EXCLUDED) && \
29         zip -r $(ZIPFILE) *
30
31 clean-local:
32         rm -rf $(PACKAGE)-install
33         rm -f $(PACKAGE)-win32-$(VERSION).zip
34