1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# Copyright, the authors of the Linux man-pages project
# SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
ifndef MAKEFILE_CONFIGURE_BUILD_DEPENDS_CLANG_CLANG_INCLUDED
MAKEFILE_CONFIGURE_BUILD_DEPENDS_CLANG_CLANG_INCLUDED := 1
include $(MAKEFILEDIR)/configure/build-depends/gcc/cc.mk
DEFAULT_CLANGFLAGS := \
$(COMMON_CFLAGS) \
$(CLANG_CFLAGS)
ifndef CLANGFLAGS
CLANGFLAGS :=
endif
ifndef CLANGFLAGS_
CLANGFLAGS_ := $(DEFAULT_CLANGFLAGS) $(CLANGFLAGS)
endif
endif # include guard
|