2013-02-10 17:22:07 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,sysui))
|
|
|
|
|
|
|
|
ifneq ($(OS),WNT)
|
2013-07-15 14:04:05 -05:00
|
|
|
ifneq ($(OS),MACOSX)
|
2013-02-10 17:22:07 -06:00
|
|
|
$(eval $(call gb_Module_add_targets,sysui,\
|
|
|
|
CustomTarget_share \
|
|
|
|
Package_share \
|
|
|
|
$(if $(filter rpm,$(PKGFORMAT)),CustomTarget_rpm) \
|
|
|
|
$(if $(filter deb,$(PKGFORMAT)),CustomTarget_deb) \
|
|
|
|
$(if $(filter SOLARIS,$(OS)),CustomTarget_solaris) \
|
|
|
|
))
|
2013-07-15 14:04:05 -05:00
|
|
|
else # OS=MACOSX
|
2013-02-10 17:22:07 -06:00
|
|
|
$(eval $(call gb_Module_add_targets,sysui,\
|
2013-04-17 14:28:40 -05:00
|
|
|
Package_osxicons \
|
2013-02-10 17:22:07 -06:00
|
|
|
CustomTarget_infoplist \
|
|
|
|
Package_infoplist \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|