bcm53xx: fix ASUS firmwares to use vendor format
[openwrt/staging/jogo.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 MAKE_FLAGS = \
40 ARCH="$(LINUX_KARCH)" \
41 NO_LIBPERL=1 \
42 NO_LIBPYTHON=1 \
43 NO_NEWT=1 \
44 NO_LZMA=1 \
45 NO_BACKTRACE=1 \
46 NO_LIBNUMA=1 \
47 NO_GTK2=1 \
48 NO_LIBAUDIT=1 \
49 NO_LIBCRYPTO=1 \
50 NO_LIBUNWIND=1 \
51 CROSS_COMPILE="$(TARGET_CROSS)" \
52 CC="$(TARGET_CC)" \
53 LD="$(TARGET_CROSS)ld" \
54 CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
55 LDFLAGS="$(TARGET_LDFLAGS)" \
56 $(if $(findstring c,$(OPENWRT_VERBOSE)),V=1,V='') \
57 WERROR=0 \
58 O=$(PKG_BUILD_DIR) \
59 prefix=/usr
60
61 define Build/Compile
62 +$(MAKE_FLAGS) $(MAKE) $(PKG_JOBS) \
63 --no-print-directory \
64 -C $(LINUX_DIR)/tools/perf
65 endef
66
67 define Package/perf/install
68 $(INSTALL_DIR) $(1)/usr/bin
69 $(INSTALL_BIN) $(PKG_BUILD_DIR)/perf $(1)/usr/bin/
70 endef
71
72 $(eval $(call BuildPackage,perf))