Impress Remote 1.0.5, tag sdremote-1.0.5
[LibreOffice.git] / shell / CustomTarget_x64.mk
blob332a8e2454d1e3a1ab8f13e8e52486ea8057972c
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2 # Version: MPL 1.1 / GPLv3+ / LGPLv3+
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License or as specified alternatively below. You may obtain a copy of
7 # the License at http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
12 # License.
14 # Major Contributor(s):
15 # Copyright (C) 2012 Red Hat, Inc., David Tardon <dtardon@redhat.com>
16 # (initial developer)
18 # All Rights Reserved.
20 # For minor contributions see the git repository.
22 # Alternatively, the contents of this file may be used under the terms of
23 # either the GNU General Public License Version 3 or later (the "GPLv3+"), or
24 # the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
25 # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
26 # instead of those above.
28 $(eval $(call gb_CustomTarget_CustomTarget,shell/source))
30 SHELL_SHLXTHANDLER_COMMON_FILES := \
31 win32/ooofilereader/autostyletag \
32 win32/ooofilereader/basereader \
33 win32/ooofilereader/contentreader \
34 win32/ooofilereader/keywordstag \
35 win32/ooofilereader/metainforeader \
36 win32/ooofilereader/simpletag \
37 win32/shlxthandler/ooofilt/stream_helper \
38 win32/shlxthandler/util/fileextensions \
39 win32/shlxthandler/util/iso8601_converter \
40 win32/shlxthandler/util/registry \
41 win32/shlxthandler/util/utilities \
42 win32/zipfile/zipexcptn \
43 win32/zipfile/zipfile
45 SHELL_SHLXTHDL_FILES := \
46 win32/shlxthandler/classfactory \
47 win32/shlxthandler/columninfo/columninfo \
48 win32/shlxthandler/infotips/infotips \
49 win32/shlxthandler/propsheets/document_statistic \
50 win32/shlxthandler/propsheets/listviewbuilder \
51 win32/shlxthandler/propsheets/propsheets \
52 win32/shlxthandler/shlxthdl \
53 win32/shlxthandler/thumbviewer/thumbviewer
55 SHELL_OOOFILT_FILES := \
56 win32/shlxthandler/ooofilt/ooofilt \
57 win32/shlxthandler/ooofilt/propspec
59 SHELL_PROPERTYHDL_FILES := \
60 win32/shlxthandler/prophdl/propertyhdl
62 SHELL_XMLPARSER_FILES := \
63 all/xml_parser
65 SHELL_HEADERS := \
66 win32/ooofilereader/autostyletag \
67 win32/ooofilereader/dummytag \
68 win32/ooofilereader/itag \
69 win32/ooofilereader/keywordstag \
70 win32/ooofilereader/simpletag \
71 win32/shlxthandler/classfactory \
72 win32/shlxthandler/ooofilt/ooofilt \
73 win32/shlxthandler/ooofilt/propspec \
74 win32/shlxthandler/propsheets/document_statistic \
75 win32/shlxthandler/propsheets/listviewbuilder \
76 win32/zipfile/zipexcptn
78 $(call gb_CustomTarget_get_target,shell/source) : \
79 $(foreach source,$(SHELL_SHLXTHANDLER_COMMON_FILES) $(SHELL_SHLXTHDL_FILES) $(SHELL_OOOFILT_FILES) $(SHELL_PROPERTYHDL_FILES) $(SHELL_XMLPARSER_FILES),\
80 $(call gb_CustomTarget_get_workdir,shell/source)/$(source).cxx) \
81 $(foreach header,$(SHELL_HEADERS),\
82 $(call gb_CustomTarget_get_workdir,shell/source)/$(header).hxx)
84 $(call gb_CustomTarget_get_workdir,shell/source)/% : $(SRCDIR)/shell/source/%
85 mkdir -p $(dir $@) && $(call gb_Deliver_deliver,$<,$@)
87 # vim: set shiftwidth=4 tabstop=4 noexpandtab: