First git repo commit for the libreCMC project
[librecmc/librecmc.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:=2
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:= +libelf1 +libdw +libpthread +librt +objdump @!LINUX_3_18 @!IN_SDK
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 define Build/Prepare
40         $(CP) $(LINUX_DIR)/tools/perf/* $(PKG_BUILD_DIR)/
41 endef
42
43 MAKE_FLAGS = \
44         ARCH="$(LINUX_KARCH)" \
45         NO_LIBPERL=1 \
46         NO_LIBPYTHON=1 \
47         NO_NEWT=1 \
48         NO_LZMA=1 \
49         NO_BACKTRACE=1 \
50         NO_LIBNUMA=1 \
51         NO_GTK2=1 \
52         NO_LIBAUDIT=1 \
53         NO_LIBCRYPTO=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         $(if $(findstring c,$(OPENWRT_VERBOSE)),V=1,V='') \
60         WERROR=0 \
61         prefix=/usr
62
63 ifdef CONFIG_USE_MUSL
64  MAKE_FLAGS += EXTRA_CFLAGS="-I$(CURDIR)/musl-include -include $(CURDIR)/musl-compat.h -D__UCLIBC__"
65 endif
66
67 define Build/Compile
68         +$(MAKE_FLAGS) $(MAKE) $(PKG_JOBS) \
69                 -C $(PKG_BUILD_DIR) \
70                 -f Makefile.perf \
71                 --no-print-directory
72 endef
73
74 define Package/perf/install
75         $(INSTALL_DIR) $(1)/usr/bin
76         $(INSTALL_BIN) $(PKG_BUILD_DIR)/perf $(1)/usr/bin/
77 endef
78
79 $(eval $(call BuildPackage,perf))