tdf#147298: Add a simple test case for formula cell tracking by column.
[LibreOffice.git] / odk / CustomTarget_allheaders.mk
blobea632209ea6bbea9672e60225094e59bf90a58ae
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,odk/allheaders))
12 odk_allheaders_DIR := $(call gb_CustomTarget_get_workdir,odk/allheaders)
14 $(call gb_CustomTarget_get_target,odk/allheaders) : \
15 $(odk_allheaders_DIR)/allheaders.hxx
17 define odk_genincludesheader
18 // Generated list of sal includes
19 #ifdef _WIN32
20 #include <windows.h>
21 #endif
23 endef
25 define odk_geninclude
26 $(if $(2),#ifdef _WIN32)
27 #include <$(subst $(INSTDIR)/$(SDKDIRNAME)/include/,,$(1))>
28 $(if $(2),#endif)
30 endef
32 $(odk_allheaders_DIR)/allheaders.hxx : \
33 $(call gb_Package_get_target,odk_headers) \
34 $(call gb_Package_get_target,odk_headers_generated) \
35 | $(odk_allheaders_DIR)/.dir
36 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1)
37 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),ECH)
38 ifeq ($(HAVE_GNUMAKE_FILE_FUNC),)
39 printf '// Generated list of sal includes\n' > $@ && \
40 printf '#ifdef _WIN32\n' >> $@ && \
41 printf '#include <windows.h>\n' >> $@ && \
42 printf '#endif\n' >> $@ \
43 $(foreach file,$(shell cat $^),\
44 $(if $(findstring /win32/,$(file)),&& printf '#ifdef _WIN32\n' >> $@) \
45 && printf '#include <%s>\n' $(subst $(INSTDIR)/$(SDKDIRNAME)/include/,,$(file)) >> $@ \
46 $(if $(findstring /win32/,$(file)),&& printf '#endif\n' >> $@) \
48 else
49 $(file >$@,\
50 $(call odk_genincludesheader) \
51 $(foreach file,$(shell cat $^),$(call odk_geninclude,$(file),$(findstring /win32/,$(file)))))
52 endif
53 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),ECH)
55 # vim: set noet sw=4 ts=4: