cURL: follow redirects
[LibreOffice.git] / external / bzip2 / ExternalProject_bzip2.mk
blob5b88ced29b102ed04182dd3493dc21edee31c50d
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_ExternalProject_ExternalProject,bzip2))
12 $(eval $(call gb_ExternalProject_register_targets,bzip2,\
13 build \
16 $(eval $(call gb_ExternalProject_use_nmake,bzip2,build))
18 ifeq ($(COM),MSC)
19 $(call gb_ExternalProject_get_state_target,bzip2,build):
20 $(call gb_ExternalProject_run,build,\
21 nmake -nologo -f makefile.msc \
23 else
24 $(call gb_ExternalProject_get_state_target,bzip2,build):
25 $(call gb_ExternalProject_run,build,\
26 $(MAKE) \
28 endif
30 # vim: set noet sw=4 ts=4: