]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - kernel/gcov/Makefile
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / kernel / gcov / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 ccflags-y := -DSRCTREE='"$(srctree)"' -DOBJTREE='"$(objtree)"'
3
4 obj-y := base.o fs.o
5 obj-$(CONFIG_GCOV_FORMAT_3_4) += gcc_3_4.o
6 obj-$(CONFIG_GCOV_FORMAT_4_7) += gcc_4_7.o
7 obj-$(CONFIG_GCOV_FORMAT_AUTODETECT) += $(call cc-ifversion, -lt, 0407, \
8 gcc_3_4.o, gcc_4_7.o)