jdk

Форк
0
/
CompileCommands.gmk 
55 строк · 2.4 Кб
1
#
2
# Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
#
5
# This code is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License version 2 only, as
7
# published by the Free Software Foundation.  Oracle designates this
8
# particular file as subject to the "Classpath" exception as provided
9
# by Oracle in the LICENSE file that accompanied this code.
10
#
11
# This code is distributed in the hope that it will be useful, but WITHOUT
12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14
# version 2 for more details (a copy is included in the LICENSE file that
15
# accompanied this code).
16
#
17
# You should have received a copy of the GNU General Public License version
18
# 2 along with this work; if not, write to the Free Software Foundation,
19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
#
21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
# or visit www.oracle.com if you need additional information or have any
23
# questions.
24
#
25

26
default: all
27

28
include $(SPEC)
29
include MakeBase.gmk
30

31
# When FIXPATH is set, let it process the file to make sure all paths are usable
32
# by system native tools. The FIXPATH tool assumes arguments preceded by an @
33
# character points to a text file containing further arguments (similar to a
34
# linker). It replaces any such arguments with a different temporary filename,
35
# whose contents has been processed to make any paths native. To obtain a
36
# properly processed compile_commands.json, FIXPATH is then made to invoke an
37
# AWK script with the unprocessed json file as the only argument, prepended with
38
# an @ character. The AWK script simply copies the contents of this processed
39
# file.
40
#
41
# The sed command encloses the fragments inside brackets and removes the final
42
# trailing comma.
43
$(OUTPUTDIR)/compile_commands.json: $(wildcard $(MAKESUPPORT_OUTPUTDIR)/compile-commands/*.json)
44
	$(call LogWarn, Updating compile_commands.json)
45
	$(RM) $@
46
	$(FIND) $(MAKESUPPORT_OUTPUTDIR)/compile-commands/ -name \*.json | \
47
	    $(SORT) | $(XARGS) $(CAT) >> $@.tmp
48
	$(SED) -e '1s/^/[\$(NEWLINE)/' -e '$(DOLLAR)s/,\s\{0,\}$(DOLLAR)/\$(NEWLINE)]/' $@.tmp > $@
49
	$(RM) $@.tmp
50

51
TARGETS += $(OUTPUTDIR)/compile_commands.json
52

53
all: $(TARGETS)
54

55
.PHONY: all
56

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.