diff options
author | Peter Foley <pefoley2@verizon.net> | 2012-10-29 10:50:32 -0400 |
---|---|---|
committer | Peter Foley <pefoley2@verizon.net> | 2012-10-29 12:25:53 -0400 |
commit | 0f075129c95f7aee782bf08b2edbe7c71db1c7b2 (patch) | |
tree | a6dd3dab52ffac33fe742f3e01d3fcc569e61068 /curl/Module_curl.mk | |
parent | a3d9253615078a35836c9e79dd694c4540dd5dde (diff) |
convert curl to gbuild
Change-Id: I8c038a0c59660f4fb672d71c08e6ee0b56c302ee
Diffstat (limited to 'curl/Module_curl.mk')
-rw-r--r-- | curl/Module_curl.mk | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/curl/Module_curl.mk b/curl/Module_curl.mk new file mode 100644 index 000000000000..2f9c4b2a9403 --- /dev/null +++ b/curl/Module_curl.mk @@ -0,0 +1,20 @@ +# -*- 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_Module_Module,curl)) + +ifeq ($(SYSTEM_CURL),NO) +$(eval $(call gb_Module_add_targets,curl,\ + UnpackedTarball_curl \ + ExternalPackage_curl \ + ExternalProject_curl \ +)) +endif + +# vim: set noet sw=4 ts=4: |