Skip to content
This repository has been archived by the owner on Aug 3, 2022. It is now read-only.

Commit

Permalink
external/oprofile 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Upstream committed Jan 12, 1970
0 parents commit cc2ee17
Show file tree
Hide file tree
Showing 407 changed files with 95,559 additions and 0 deletions.
340 changes: 340 additions & 0 deletions COPYING

Large diffs are not rendered by default.

589 changes: 589 additions & 0 deletions ChangeLog

Large diffs are not rendered by default.

2,327 changes: 2,327 additions & 0 deletions ChangeLog-2001

Large diffs are not rendered by default.

4,416 changes: 4,416 additions & 0 deletions ChangeLog-2002

Large diffs are not rendered by default.

6,251 changes: 6,251 additions & 0 deletions ChangeLog-2003

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions Makefile.am
@@ -0,0 +1,92 @@
SUBDIRS = \
. \
m4 \
libutil \
libop \
libdb \
libutil++ \
libopt++ \
libabi \
daemon \
utils \
libregex \
libpp \
pp \
events \
doc \
gui

ACLOCAL_AMFLAGS = -I m4

# The module will not build under distcheck
DISTCHECK_CONFIGURE_FLAGS = --with-kernel-support

if !kernel_support

.PHONY: module

all-local: module

# This must use a fully-qualified SUBDIRS path, so we can't use ${top_srcdir}
module:
make -C libutil
make -C libop
(cd $(KSRC) && $(MAKE) SUBDIRS=$(OPROFILE_DIR)/module/@OPROFILE_MODULE_ARCH@ modules) || exit 1 ;
(cd $(KSRC) && $(MAKE) SUBDIRS=$(OPROFILE_DIR)/module modules) || exit 1 ;

install-exec-local:
-mkdir -p $(MODINSTALLDIR)/oprofile
cp module/oprofile-module.o $(MODINSTALLDIR)/oprofile/oprofile.o
if test $(KVERS) = "`uname -r`"; then depmod -a ; fi

clean-local:
rm -f module/*.o module/@OPROFILE_MODULE_ARCH@/*.o \
module/.*.o.cmd module/.*.o.flags \
module/@OPROFILE_MODULE_ARCH@/.*.o.cmd module/@OPROFILE_MODULE_ARCH@/.*.o.flags

endif

EXTRA_DIST = \
ChangeLog-2001 \
ChangeLog-2002 \
ChangeLog-2003 \
autogen.sh \
include/sstream \
module/Makefile.in \
module/compat.c \
module/op_dname.c \
module/op_init.c \
module/oprofile.c \
module/op_util.c \
module/compat22.h \
module/compat24.h \
module/compat.h \
module/op_cache.h \
module/op_dcache.h \
module/oprofile.h \
module/op_util.h \
module/ia64/Makefile.in \
module/ia64/oprofile_stubs.S \
module/ia64/cpu_type.c \
module/ia64/op_pmu.c \
module/ia64/op_syscalls.c \
module/ia64/IA64entry.h \
module/ia64/IA64minstate.h \
module/ia64/IA64syscallstub.h \
module/ia64/op_ia64_model.h \
module/x86/Makefile.in \
module/x86/oprofile_nmi.S \
module/x86/apic_compat.h \
module/x86/op_apic.h \
module/x86/op_arch.h \
module/x86/op_x86_model.h \
module/x86/op_msr.h \
module/x86/cpu_type.c \
module/x86/op_apic.c \
module/x86/op_fixmap.c \
module/x86/op_model_athlon.c \
module/x86/op_model_p4.c \
module/x86/op_model_ppro.c \
module/x86/op_nmi.c \
module/x86/op_rtc.c \
module/x86/op_syscalls.c

0 comments on commit cc2ee17

Please sign in to comment.