aboutsummaryrefslogtreecommitdiff
path: root/events/Makefile.am
blob: 475c4d36d06ed4536ef07cb87868b03d83969cd4 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
event_files = \
	alpha/ev4/events alpha/ev4/unit_masks \
	alpha/ev5/events alpha/ev5/unit_masks \
	alpha/ev67/events alpha/ev67/unit_masks \
	alpha/ev6/events alpha/ev6/unit_masks \
	alpha/pca56/events alpha/pca56/unit_masks \
	i386/athlon/events i386/athlon/unit_masks \
	i386/core_2/events i386/core_2/unit_masks \
	i386/p4/events i386/p4-ht/events \
	i386/p4-ht/unit_masks i386/p4/unit_masks \
	i386/pii/events i386/pii/unit_masks \
	i386/piii/events i386/piii/unit_masks \
	i386/ppro/events i386/ppro/unit_masks \
	i386/p6_mobile/events i386/p6_mobile/unit_masks \
	i386/core/events i386/core/unit_masks \
	i386/arch_perfmon/events i386/arch_perfmon/unit_masks \
	i386/atom/events i386/atom/unit_masks \
	i386/core_i7/events i386/core_i7/unit_masks \
	i386/nehalem/events i386/nehalem/unit_masks \
	i386/westmere/events i386/westmere/unit_masks \
	ia64/ia64/events ia64/ia64/unit_masks \
	ia64/itanium2/events ia64/itanium2/unit_masks \
	ia64/itanium/events ia64/itanium/unit_masks \
	ppc64/power4/events ppc64/power4/event_mappings ppc64/power4/unit_masks \
	ppc64/power5/events ppc64/power5/event_mappings ppc64/power5/unit_masks \
	ppc64/power5+/events ppc64/power5+/event_mappings ppc64/power5+/unit_masks \
	ppc64/power5++/events ppc64/power5++/event_mappings ppc64/power5++/unit_masks \
	ppc64/power6/events ppc64/power6/event_mappings ppc64/power6/unit_masks \
	ppc64/power7/events ppc64/power7/event_mappings ppc64/power7/unit_masks \
	ppc64/970/events ppc64/970/event_mappings ppc64/970/unit_masks \
	ppc64/970MP/events ppc64/970MP/event_mappings ppc64/970MP/unit_masks \
	ppc64/ibm-compat-v1/events ppc64/ibm-compat-v1/event_mappings ppc64/ibm-compat-v1/unit_masks \
	ppc64/pa6t/events ppc64/pa6t/event_mappings ppc64/pa6t/unit_masks \
	ppc64/cell-be/events ppc64/cell-be/unit_masks \
	rtc/events rtc/unit_masks \
	x86-64/hammer/events x86-64/hammer/unit_masks \
	x86-64/family10/events x86-64/family10/unit_masks \
	x86-64/family11h/events x86-64/family11h/unit_masks \
	x86-64/family12h/events x86-64/family12h/unit_masks \
	x86-64/family14h/events x86-64/family14h/unit_masks \
	x86-64/family15h/events x86-64/family15h/unit_masks \
	arm/xscale1/events arm/xscale1/unit_masks \
	arm/xscale2/events arm/xscale2/unit_masks \
	arm/armv6/events arm/armv6/unit_masks \
	arm/armv7-common/events arm/armv7-common/unit_masks \
	arm/armv7/events arm/armv7/unit_masks \
	arm/armv7-ca9/events arm/armv7-ca9/unit_masks \
	arm/mpcore/events arm/mpcore/unit_masks \
	avr32/events avr32/unit_masks \
	mips/20K/events mips/20K/unit_masks \
	mips/24K/events mips/24K/unit_masks \
	mips/25K/events mips/25K/unit_masks \
	mips/34K/events mips/34K/unit_masks \
	mips/5K/events mips/5K/unit_masks \
	mips/rm7000/events mips/rm7000/unit_masks \
	mips/rm9000/events mips/rm9000/unit_masks \
	mips/sb1/events mips/sb1/unit_masks \
	mips/r10000/events mips/r10000/unit_masks \
	mips/r12000/events mips/r12000/unit_masks \
	mips/vr5432/events mips/vr5432/unit_masks \
	mips/vr5500/events mips/vr5500/unit_masks \
	mips/loongson2/events mips/loongson2/unit_masks \
	mips/1004K/events mips/1004K/unit_masks \
	mips/74K/events mips/74K/unit_masks \
	ppc/7450/events ppc/7450/unit_masks \
	ppc/e500/events ppc/e500/unit_masks \
	ppc/e500v2/events ppc/e500v2/unit_masks \
	ppc/e300/events ppc/e300/unit_masks

install-data-local:
	for i in ${event_files} ; do \
		dir=`dirname $$i` ; \
		mkdir -p $(DESTDIR)$(pkgdatadir)/$$dir ; \
		$(INSTALL_DATA) $(top_srcdir)/events/$$i $(DESTDIR)$(pkgdatadir)/$$i ; \
	done

uninstall-local:
	for i in ${event_files} ; do \
		dir=`dirname $$i` ; \
		archdir=`dirname $$dir` ; \
		if test -f $(DESTDIR)$(pkgdatadir)/$$i ; then \
			rm $(DESTDIR)$(pkgdatadir)/$$i ; \
		fi;  \
		if test -d $(DESTDIR)$(pkgdatadir)/$$dir ; then \
			rmdir --ignore-fail-on-non-empty $(DESTDIR)$(pkgdatadir)/$$dir ; \
		fi; \
		if test $$archdir != "." -a -d $(DESTDIR)$(pkgdatadir)/$$archdir ; then \
			rmdir --ignore-fail-on-non-empty $(DESTDIR)$(pkgdatadir)/$$archdir ; \
		fi; \
	done

EXTRA_DIST = $(event_files)