24 lines
666 B
Makefile
24 lines
666 B
Makefile
################################################################################
|
|
#
|
|
# oprofile
|
|
#
|
|
################################################################################
|
|
|
|
OPROFILE_VERSION = 1.4.0
|
|
OPROFILE_SITE = http://downloads.sourceforge.net/project/oprofile/oprofile/oprofile-$(OPROFILE_VERSION)
|
|
OPROFILE_LICENSE = GPL-2.0+
|
|
OPROFILE_LICENSE_FILES = COPYING
|
|
OPROFILE_CPE_ID_VENDOR = maynard_johnson
|
|
OPROFILE_CONF_OPTS = \
|
|
--disable-account-check \
|
|
--enable-gui=no \
|
|
--with-kernel=$(STAGING_DIR)/usr
|
|
|
|
OPROFILE_DEPENDENCIES = popt binutils host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPFM4),y)
|
|
OPROFILE_DEPENDENCIES += libpfm4
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|