summaryrefslogtreecommitdiff
path: root/external/libeot/ExternalProject_libeot.mk
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2013-11-12 16:44:40 +0100
committerDavid Tardon <dtardon@redhat.com>2013-11-12 17:28:12 +0100
commit49a4d366ee7c298e547955344001f3d95622106a (patch)
tree650525471ff76e2f6fb3b86b4a5fb1f4135b2034 /external/libeot/ExternalProject_libeot.mk
parent1db1d9ecadf10788f5b310942e0128344ad2c8aa (diff)
integrate libeot
Change-Id: I0f28ff1680026d883909cc12efabb54f705cecb4
Diffstat (limited to 'external/libeot/ExternalProject_libeot.mk')
-rw-r--r--external/libeot/ExternalProject_libeot.mk28
1 files changed, 28 insertions, 0 deletions
diff --git a/external/libeot/ExternalProject_libeot.mk b/external/libeot/ExternalProject_libeot.mk
new file mode 100644
index 000000000000..97e28005de36
--- /dev/null
+++ b/external/libeot/ExternalProject_libeot.mk
@@ -0,0 +1,28 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_ExternalProject_ExternalProject,libeot))
+
+$(eval $(call gb_ExternalProject_register_targets,libeot,\
+ build \
+))
+
+$(call gb_ExternalProject_get_state_target,libeot,build) :
+ $(call gb_ExternalProject_run,build,\
+ touch Makefile.in \
+ && export PKG_CONFIG="" \
+ && ./configure \
+ --with-pic \
+ --enable-static \
+ --disable-shared \
+ --disable-debug \
+ && $(MAKE) $(if $(VERBOSE)$(verbose),V=1) \
+ )
+
+# vim: set noet sw=4 ts=4: