]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/sh/oprofile/Makefile
Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee13...
[mirror_ubuntu-artful-kernel.git] / arch / sh / oprofile / Makefile
1 obj-$(CONFIG_OPROFILE) += oprofile.o
2
3 DRIVER_OBJS = $(addprefix ../../../drivers/oprofile/, \
4 oprof.o cpu_buffer.o buffer_sync.o \
5 event_buffer.o oprofile_files.o \
6 oprofilefs.o oprofile_stats.o \
7 timer_int.o )
8
9 profdrvr-y := op_model_null.o
10
11 # SH7750-style performance counters exist across 7750/7750S and 7091.
12 profdrvr-$(CONFIG_CPU_SUBTYPE_SH7750S) := op_model_sh7750.o
13 profdrvr-$(CONFIG_CPU_SUBTYPE_SH7750) := op_model_sh7750.o
14 profdrvr-$(CONFIG_CPU_SUBTYPE_SH7091) := op_model_sh7750.o
15
16 oprofile-y := $(DRIVER_OBJS) $(profdrvr-y)
17