573b8543cb
This commit breaks linkoo. make dev-install continues to work as before but it's not necessary to use it anymore. make check now uses files copied into instdir by gbuild. TODO: fix remaining issues so that instdir is the same as install/. Change-Id: I66836170f0922ee9ba204a61ffacc30d9e9a5d98
25 lines
639 B
Makefile
25 lines
639 B
Makefile
# -*- 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,instsetoo_native))
|
|
|
|
ifneq (,$(filter WNT,$(OS))$(filter-out NO,$(EPM)))
|
|
|
|
$(eval $(call gb_Module_add_targets,instsetoo_native,\
|
|
CustomTarget_install \
|
|
))
|
|
|
|
endif
|
|
|
|
$(eval $(call gb_Module_add_targets,instsetoo_native,\
|
|
CustomTarget_setup \
|
|
Package_setup \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|