3bb403916bfec892ee917719e05c146660f3a26f
[openwrt/openwrt.git] / package / devel / perf / Makefile
1 #
2 # Copyright (C) 2011-2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=perf
12 PKG_VERSION:=$(LINUX_VERSION)
13 PKG_RELEASE:=3
14
15 PKG_USE_MIPS16:=0
16 PKG_BUILD_PARALLEL:=1
17 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
18 PKG_FLAGS:=nonshared
19
20 # Perf's makefile and headers are not relocatable and must be built from the
21 # Linux sources directory
22 PKG_BUILD_DIR:=$(LINUX_DIR)/tools/perf-$(TARGET_DIR_NAME)
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/perf
27 SECTION:=devel
28 CATEGORY:=Development
29 DEPENDS:= +libelf +libdw +PACKAGE_libunwind:libunwind +libpthread +librt +objdump @!IN_SDK @!TARGET_arc770 @KERNEL_PERF_EVENTS
30 TITLE:=Linux performance monitoring tool
31 VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE)
32 URL:=http://www.kernel.org
33 endef
34
35 define Package/perf/description
36 perf is the Linux performance monitoring tool
37 endef
38
39 HOST_CFLAGS += -I$(LINUX_DIR)/tools/include
40
41 MAKE_FLAGS = \
42 ARCH="$(LINUX_KARCH)" \
43 NO_LIBPERL=1 \
44 NO_LIBPYTHON=1 \
45 NO_NEWT=1 \
46 NO_LZMA=1 \
47 NO_BACKTRACE=1 \
48 NO_LIBNUMA=1 \
49 NO_GTK2=1 \
50 NO_LIBAUDIT=1 \
51 NO_LIBCRYPTO=1 \
52 NO_LIBUNWIND=1 \
53 NO_LIBCAP=1 \
54 CROSS_COMPILE="$(TARGET_CROSS)" \
55 CC="$(TARGET_CC)" \
56 LD="$(TARGET_CROSS)ld" \
57 CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
58 LDFLAGS="$(TARGET_LDFLAGS)" \
59 KBUILD_HOSTCFLAGS="$(HOST_CFLAGS)" \
60 $(if $(findstring c,$(OPENWRT_VERBOSE)),V=1,V='') \
61 WERROR=0 \
62 O=$(PKG_BUILD_DIR) \
63 prefix=/usr
64
65 define Build/Compile
66 +$(MAKE_FLAGS) $(MAKE) $(PKG_JOBS) \
67 --no-print-directory \
68 -C $(LINUX_DIR)/tools/perf
69 endef
70
71 define Package/perf/install
72 $(INSTALL_DIR) $(1)/usr/bin
73 $(INSTALL_BIN) $(PKG_BUILD_DIR)/perf $(1)/usr/bin/
74 endef
75
76 $(eval $(call BuildPackage,perf))