summaryrefslogtreecommitdiffstats
path: root/package/oprofile/oprofile.mk
blob: a82d6ab7c7ad1d5f1335290347791ed6a91ed877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#############################################################
#
# oprofile
#
#############################################################
OPROFILE_VERSION	:= 0.9.3
OPROFILE_DIR		:= $(BUILD_DIR)/oprofile-$(OPROFILE_VERSION)
OPROFILE_SITE		:= http://prdownloads.sourceforge.net/oprofile
OPROFILE_SOURCE		:= oprofile-$(OPROFILE_VERSION).tar.gz
OPROFILE_CAT		:= $(ZCAT)

OPROFILE_BINARIES	:= utils/ophelp
OPROFILE_BINARIES	+= pp/opannotate pp/oparchive pp/opgprof pp/opreport
OPROFILE_BINARIES	+= daemon/oprofiled

$(DL_DIR)/$(OPROFILE_SOURCE):
	$(WGET) -P $(DL_DIR) $(OPROFILE_SITE)/$(OPROFILE_SOURCE)

oprofile-source: $(DL_DIR)/$(OPROFILE_SOURCE)

$(OPROFILE_DIR)/.unpacked: $(DL_DIR)/$(OPROFILE_SOURCE)
	$(OPROFILE_CAT) $(DL_DIR)/$(OPROFILE_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	toolchain/patch-kernel.sh $(OPROFILE_DIR) package/oprofile/ \*.patch*
	$(CONFIG_UPDATE) $(OPROFILE_DIR)
	touch $@

$(OPROFILE_DIR)/.configured: $(OPROFILE_DIR)/.unpacked
	(cd $(OPROFILE_DIR); rm -f config.cache;		\
		$(TARGET_CONFIGURE_OPTS)			\
		$(TARGET_CONFIGURE_ARGS)			\
		./configure					\
			--target=$(GNU_TARGET_NAME)		\
			--host=$(GNU_TARGET_NAME)		\
			--build=$(GNU_HOST_NAME)		\
			--prefix=/usr				\
			--sysconfdir=/etc			\
			--localstatedir=/var			\
			--includedir=/include			\
	);
	touch $@

$(OPROFILE_DIR)/daemon/oprofiled: $(OPROFILE_DIR)/.configured
	PATH=$(TARGET_PATH) $(MAKE) -C $(OPROFILE_DIR)
	touch -c $@

$(TARGET_DIR)/usr/bin/oprofiled: $(OPROFILE_DIR)/daemon/oprofiled
	$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/bin
	$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/share/oprofile/avr32
	$(INSTALL) -m 644 $(addprefix $(OPROFILE_DIR)/events/avr32/, events unit_masks) $(TARGET_DIR)/usr/share/oprofile/avr32
	$(INSTALL) -m 644 $(OPROFILE_DIR)/libregex/stl.pat $(TARGET_DIR)/usr/share/oprofile
	$(INSTALL) -m 755 $(OPROFILE_DIR)/utils/opcontrol $(TARGET_DIR)/usr/bin
	$(INSTALL) -m 755 $(addprefix $(OPROFILE_DIR)/, $(OPROFILE_BINARIES)) $(TARGET_DIR)/usr/bin
	$(STRIPCMD) --strip-unneeded $(addprefix $(TARGET_DIR)/usr/bin/, $(notdir $(OPROFILE_BINARIES)))
	touch -c $@

oprofile: uclibc popt binutils_target $(TARGET_DIR)/usr/bin/oprofiled

oprofile-clean:
	rm -f $(addprefix $(TARGET_DIR)/usr/bin/, $(notdir $(OPROFILE_BINARIES)))
	rm -f $(TARGET_DIR)/usr/bin/opcontrol
	rm -rf $(TARGET_DIR)/usr/share/oprofile
	-$(MAKE) -C $(OPROFILE_DIR) clean

oprofile-dirclean:
	rm -rf $(OPROFILE_DIR)

#############################################################
#
# Toplevel Makefile options
#
#############################################################
ifeq ($(strip $(BR2_PACKAGE_OPROFILE)),y)
TARGETS		+= oprofile
endif