Merge to Fedora kernel-2.6.17-1.2187_FC5 patched with stable patch-2.6.17.13-vs2...
[linux-2.6.git] / arch / x86_64 / oprofile / Makefile
1 #
2 # oprofile for x86-64.
3 # Just reuse the one from i386. 
4 #
5
6 obj-$(CONFIG_OPROFILE) += oprofile.o
7  
8 DRIVER_OBJS = $(addprefix ../../../drivers/oprofile/, \
9         oprof.o cpu_buffer.o buffer_sync.o \
10         event_buffer.o oprofile_files.o \
11         oprofilefs.o oprofile_stats.o \
12         timer_int.o )
13
14 ifdef CONFIG_XEN
15 OPROFILE-y := xenoprof.o
16 else
17 OPROFILE-y := init.o backtrace.o
18 OPROFILE-$(CONFIG_X86_LOCAL_APIC) += nmi_int.o op_model_athlon.o op_model_p4.o \
19                                      op_model_ppro.o
20 OPROFILE-$(CONFIG_X86_IO_APIC)    += nmi_timer_int.o 
21 endif
22 oprofile-y = $(DRIVER_OBJS) $(addprefix ../../i386/oprofile/, $(OPROFILE-y))