summaryrefslogtreecommitdiff
path: root/libatomic_ops/ExternalProject_libatomic_ops.mk
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2013-06-14 14:55:22 +0100
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2013-07-16 16:40:09 +0200
commit0f16fa0fa58180a79aa5d27b44dbab4f9b6374b4 (patch)
treea0be4bc4f6fa6788fd239acf8ef356794a26a81f /libatomic_ops/ExternalProject_libatomic_ops.mk
parent8c325831b36394fa9217e30c706f36dc6ac7fafc (diff)
Build firebird 2.5 internally. Also adds libatomic_ops.
Change-Id: I44a45e781dfb3624cdebf4530ae44870bf39a82a
Diffstat (limited to 'libatomic_ops/ExternalProject_libatomic_ops.mk')
-rw-r--r--libatomic_ops/ExternalProject_libatomic_ops.mk26
1 files changed, 26 insertions, 0 deletions
diff --git a/libatomic_ops/ExternalProject_libatomic_ops.mk b/libatomic_ops/ExternalProject_libatomic_ops.mk
new file mode 100644
index 000000000000..06ec521c615d
--- /dev/null
+++ b/libatomic_ops/ExternalProject_libatomic_ops.mk
@@ -0,0 +1,26 @@
+# -*- 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,libatomic_ops))
+
+$(eval $(call gb_ExternalProject_use_autoconf,libatomic_ops,build))
+
+$(eval $(call gb_ExternalProject_register_targets,libatomic_ops,\
+ build \
+))
+
+$(call gb_ExternalProject_get_state_target,libatomic_ops,build) :
+ $(call gb_ExternalProject_run,build,\
+ $(if $(filter TRUE,$(DISABLE_DYNLOADING)),CFLAGS="$(CFLAGS) $(gb_VISIBILITY_FLAGS) $(gb_COMPILEROPTFLAGS)" CXXFLAGS="$(CXXFLAGS) $(gb_VISIBILITY_FLAGS) $(gb_COMPILEROPTFLAGS)") \
+ ./configure \
+ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
+ && $(MAKE) \
+ )
+
+# vim: set noet sw=4 ts=4: