Revision a38fd8748464831584a19438cbb3082b5a2dab15 authored by Linus Torvalds on 06 March 2021, 01:33:41 UTC, committed by Linus Torvalds on 06 March 2021, 01:33:41 UTC
1 parent f3ed4de
Raw File
Makefile-skas
# 
# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
# Licensed under the GPL
#

GPROF_OPT += -pg
GCOV_OPT += -fprofile-arcs -ftest-coverage

CFLAGS-$(CONFIG_GCOV) += $(GCOV_OPT)
CFLAGS-$(CONFIG_GPROF) += $(GPROF_OPT)
LINK-$(CONFIG_GCOV) += $(GCOV_OPT)
LINK-$(CONFIG_GPROF) += $(GPROF_OPT)
back to top