~ubuntu-branches/ubuntu/saucy/linux-ti-omap4/saucy-proposed

« back to all changes in this revision

Viewing changes to tools/Makefile

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Stefan Bader, Upstream Kernel Changes
  • Date: 2012-08-15 17:17:43 UTC
  • Revision ID: package-import@ubuntu.com-20120815171743-h5wnuf51xe7pvdid
Tags: 3.5.0-207.13
[ Paolo Pisati ]

* Start new release

[ Stefan Bader ]

* (config) Enable getabis to use local package copies

[ Upstream Kernel Changes ]

* fixup: gargabe collect iva_seq[0|1] init
* [Config] enable all SND_OMAP_SOC_*s
* fixup: cm2xxx_3xxx.o is needed for omap2_cm_read|write_reg
* fixup: add some snd_soc_dai* helper functions
* fixup: s/snd_soc_dpcm_params/snd_soc_dpcm/g
* fixup: typo, no_host_mode and useless SDP4430 init
* fixup: enable again aess hwmod

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include scripts/Makefile.include
 
2
 
 
3
help:
 
4
        @echo 'Possible targets:'
 
5
        @echo ''
 
6
        @echo '  cpupower   - a tool for all things x86 CPU power'
 
7
        @echo '  firewire   - the userspace part of nosy, an IEEE-1394 traffic sniffer'
 
8
        @echo '  lguest     - a minimal 32-bit x86 hypervisor'
 
9
        @echo '  perf       - Linux performance measurement and analysis tool'
 
10
        @echo '  selftests  - various kernel selftests'
 
11
        @echo '  turbostat  - Intel CPU idle stats and freq reporting tool'
 
12
        @echo '  usb        - USB testing tools'
 
13
        @echo '  virtio     - vhost test module'
 
14
        @echo '  vm         - misc vm tools'
 
15
        @echo '  x86_energy_perf_policy - Intel energy policy tool'
 
16
        @echo ''
 
17
        @echo 'You can do:'
 
18
        @echo ' $$ make -C tools/<tool>_install'
 
19
        @echo ''
 
20
        @echo '  from the kernel command line to build and install one of'
 
21
        @echo '  the tools above'
 
22
        @echo ''
 
23
        @echo '  $$ make tools/install'
 
24
        @echo ''
 
25
        @echo '  installs all tools.'
 
26
        @echo ''
 
27
        @echo 'Cleaning targets:'
 
28
        @echo ''
 
29
        @echo '  all of the above with the "_clean" string appended cleans'
 
30
        @echo '    the respective build directory.'
 
31
        @echo '  clean: a summary clean target to clean _all_ folders'
 
32
 
 
33
cpupower: FORCE
 
34
        $(QUIET_SUBDIR0)power/$@/ $(QUIET_SUBDIR1)
 
35
 
 
36
firewire lguest perf usb virtio vm: FORCE
 
37
        $(QUIET_SUBDIR0)$@/ $(QUIET_SUBDIR1)
 
38
 
 
39
selftests: FORCE
 
40
        $(QUIET_SUBDIR0)testing/$@/ $(QUIET_SUBDIR1)
 
41
 
 
42
turbostat x86_energy_perf_policy: FORCE
 
43
        $(QUIET_SUBDIR0)power/x86/$@/ $(QUIET_SUBDIR1)
 
44
 
 
45
cpupower_install:
 
46
        $(QUIET_SUBDIR0)power/$(@:_install=)/ $(QUIET_SUBDIR1) install
 
47
 
 
48
firewire_install lguest_install perf_install usb_install virtio_install vm_install:
 
49
        $(QUIET_SUBDIR0)$(@:_install=)/ $(QUIET_SUBDIR1) install
 
50
 
 
51
selftests_install:
 
52
        $(QUIET_SUBDIR0)testing/$(@:_clean=)/ $(QUIET_SUBDIR1) install
 
53
 
 
54
turbostat_install x86_energy_perf_policy_install:
 
55
        $(QUIET_SUBDIR0)power/x86/$(@:_install=)/ $(QUIET_SUBDIR1) install
 
56
 
 
57
install: cpupower_install firewire_install lguest_install perf_install \
 
58
                selftests_install turbostat_install usb_install virtio_install \
 
59
                vm_install x86_energy_perf_policy_install
 
60
 
 
61
cpupower_clean:
 
62
        $(QUIET_SUBDIR0)power/cpupower/ $(QUIET_SUBDIR1) clean
 
63
 
 
64
firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean:
 
65
        $(QUIET_SUBDIR0)$(@:_clean=)/ $(QUIET_SUBDIR1) clean
 
66
 
 
67
selftests_clean:
 
68
        $(QUIET_SUBDIR0)testing/$(@:_clean=)/ $(QUIET_SUBDIR1) clean
 
69
 
 
70
turbostat_clean x86_energy_perf_policy_clean:
 
71
        $(QUIET_SUBDIR0)power/x86/$(@:_clean=)/ $(QUIET_SUBDIR1) clean
 
72
 
 
73
clean: cpupower_clean firewire_clean lguest_clean perf_clean selftests_clean \
 
74
                turbostat_clean usb_clean virtio_clean vm_clean \
 
75
                x86_energy_perf_policy_clean
 
76
 
 
77
.PHONY: FORCE