aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/gcov/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/gcov/Makefile b/kernel/gcov/Makefile
index 42323c7ec106..69b3515c1806 100644
--- a/kernel/gcov/Makefile
+++ b/kernel/gcov/Makefile
@@ -13,10 +13,10 @@ else
13 cc-ver := $(cc-version) 13 cc-ver := $(cc-version)
14endif 14endif
15 15
16obj-$(CONFIG_GCOV_KERNEL) := base.o fs.o 16obj-y := base.o fs.o
17 17
18ifeq ($(call if-lt, $(cc-ver), 0407),1) 18ifeq ($(call if-lt, $(cc-ver), 0407),1)
19 obj-$(CONFIG_GCOV_KERNEL) += gcc_3_4.o 19 obj-y += gcc_3_4.o
20else 20else
21 obj-$(CONFIG_GCOV_KERNEL) += gcc_4_7.o 21 obj-y += gcc_4_7.o
22endif 22endif