Lv Zheng | f677b30 | 2014-01-15 12:04:09 +0800 | [diff] [blame] | 1 | # tools/power/acpi/Makefile - ACPI tool Makefile |
| 2 | # |
| 3 | # Copyright (c) 2013, Intel Corporation |
| 4 | # Author: Lv Zheng <lv.zheng@intel.com> |
| 5 | # |
| 6 | # This program is free software; you can redistribute it and/or |
| 7 | # modify it under the terms of the GNU General Public License |
| 8 | # as published by the Free Software Foundation; version 2 |
| 9 | # of the License. |
| 10 | |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 11 | include ../../scripts/Makefile.include |
Lv Zheng | f677b30 | 2014-01-15 12:04:09 +0800 | [diff] [blame] | 12 | |
Lv Zheng | 4305cd0 | 2015-07-28 13:25:32 +0800 | [diff] [blame] | 13 | all: acpidump ec |
| 14 | clean: acpidump_clean ec_clean |
| 15 | install: acpidump_install ec_install |
| 16 | uninstall: acpidump_uninstall ec_uninstall |
Lv Zheng | f677b30 | 2014-01-15 12:04:09 +0800 | [diff] [blame] | 17 | |
Lv Zheng | 4305cd0 | 2015-07-28 13:25:32 +0800 | [diff] [blame] | 18 | acpidump ec: FORCE |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 19 | $(call descend,tools/$@,all) |
Lv Zheng | 4305cd0 | 2015-07-28 13:25:32 +0800 | [diff] [blame] | 20 | acpidump_clean ec_clean: |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 21 | $(call descend,tools/$(@:_clean=),clean) |
Lv Zheng | 4305cd0 | 2015-07-28 13:25:32 +0800 | [diff] [blame] | 22 | acpidump_install ec_install: |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 23 | $(call descend,tools/$(@:_install=),install) |
Lv Zheng | 4305cd0 | 2015-07-28 13:25:32 +0800 | [diff] [blame] | 24 | acpidump_uninstall ec_uninstall: |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 25 | $(call descend,tools/$(@:_uninstall=),uninstall) |
Thomas Renninger | d7cddbb | 2014-04-07 15:16:57 +0200 | [diff] [blame] | 26 | |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 27 | .PHONY: FORCE |