diff options
Diffstat (limited to 'arch/um/Makefile-skas')
-rw-r--r-- | arch/um/Makefile-skas | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/um/Makefile-skas b/arch/um/Makefile-skas new file mode 100644 index 00000000000..fd18ec57227 --- /dev/null +++ b/arch/um/Makefile-skas @@ -0,0 +1,14 @@ +# +# 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) + +GEN_HEADERS += $(ARCH_DIR)/include/skas_ptregs.h |