f876fdd1c0
Follow-up to d8106b6db4
"Non-standard sed -i
option is different on macOS than with GNU sed", thanks to mst for spotting it.
Change-Id: Ida51cfa7c4dd216a5164df4f8143ac89cf2c6b7f
Reviewed-on: https://gerrit.libreoffice.org/66498
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
27 lines
1.2 KiB
Makefile
27 lines
1.2 KiB
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_CustomTarget_CustomTarget,editeng/generated))
|
|
|
|
editeng_SRC := $(SRCDIR)/editeng/source/misc
|
|
editeng_PL := $(SRCDIR)/solenv/bin/gentoken.pl
|
|
editeng_INC := $(call gb_CustomTarget_get_workdir,editeng/generated)
|
|
|
|
$(editeng_INC)/tokens.hxx $(editeng_INC)/tokens.gperf : $(editeng_SRC)/tokens.txt $(editeng_PL)
|
|
mkdir -p $(editeng_INC)
|
|
$(PERL) $(editeng_PL) $(editeng_SRC)/tokens.txt $(editeng_INC)/tokens.gperf
|
|
|
|
$(editeng_INC)/tokens.cxx : $(editeng_INC)/tokens.gperf
|
|
$(GPERF) --compare-strncmp --readonly-tables --output-file=$(editeng_INC)/tokens.cxx $(editeng_INC)/tokens.gperf
|
|
sed -i $(if $(filter MACOSX,$(OS_FOR_BUILD)),'') -e "s/(char\*)0/(char\*)0, XML_TOKEN_INVALID/g" $(editeng_INC)/tokens.cxx
|
|
sed -i $(if $(filter MACOSX,$(OS_FOR_BUILD)),'') -e "/^#line/d" $(editeng_INC)/tokens.cxx
|
|
|
|
$(call gb_CustomTarget_get_target,editeng/generated) : $(editeng_INC)/tokens.cxx
|
|
|
|
# vim: set noet sw=4 ts=4:
|