Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / solenv / CustomTarget_concat-deps.mk
blob1f138c59b8ab52a903cd043f4b6a0f7773e927e7
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_CustomTarget_CustomTarget,solenv/concat-deps))
12 $(call gb_CustomTarget_get_target,solenv/concat-deps) : \
13 $(call gb_CustomTarget_get_workdir,solenv/concat-deps)/concat-deps
15 $(call gb_CustomTarget_get_workdir,solenv/concat-deps)/concat-deps : \
16 $(SRCDIR)/solenv/bin/concat-deps.c \
17 | $(call gb_CustomTarget_get_workdir,solenv/concat-deps)/.dir
18 $(call gb_Output_announce,solenv/concat-deps,$(true),GCC,1)
19 ifeq ($(COM_FOR_BUILD),MSC)
20 # on cygwin force the use of gcc
21 gcc -O2 $< -o $@
22 else
23 $(CC_FOR_BUILD) -O2 $< -o $@
24 endif
26 # vim: set noet sw=4 ts=4: