bump product version to 4.1.6.2
[LibreOffice.git] / odk / CustomTarget_classes.mk
blobbd07f0ae57e6129baf78cbe2b1112f90c9114432
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/classes))
12 $(eval $(call gb_CustomTarget_register_targets,odk/classes,\
13 java.done \
16 $(eval $(call gb_JavaClassSet_JavaClassSet,loader))
18 $(eval $(call gb_JavaClassSet_add_sourcefiles,loader,\
19 odk/source/com/sun/star/lib/loader/Loader \
20 odk/source/com/sun/star/lib/loader/InstallationFinder \
21 odk/source/com/sun/star/lib/loader/WinRegKey \
22 odk/source/com/sun/star/lib/loader/WinRegKeyException \
25 $(call gb_CustomTarget_get_workdir,odk/classes)/%.class : $(call gb_CustomTarget_get_workdir,odk/classes)/java.done
26 touch $@
28 $(call gb_CustomTarget_get_workdir,odk/classes)/java.done: $(call gb_JavaClassSet_get_target,loader)
29 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,CPY,1)
30 cp -a $(call gb_JavaClassSet_get_classdir,loader)/com $(dir $@) && \
31 touch $@
33 # vim: set noet sw=4 ts=4: