Thomas Gleixner | b886d83c | 2019-06-01 10:08:55 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Lv Zheng | f677b30 | 2014-01-15 12:04:09 +0800 | [diff] [blame] | 2 | # tools/power/acpi/Makefile - ACPI tool Makefile |
| 3 | # |
| 4 | # Copyright (c) 2013, Intel Corporation |
| 5 | # Author: Lv Zheng <lv.zheng@intel.com> |
| 6 | # |
Lv Zheng | f677b30 | 2014-01-15 12:04:09 +0800 | [diff] [blame] | 7 | |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 8 | include ../../scripts/Makefile.include |
Lv Zheng | f677b30 | 2014-01-15 12:04:09 +0800 | [diff] [blame] | 9 | |
Thomas Renninger | 05c36e5 | 2020-09-25 17:21:04 +0200 | [diff] [blame] | 10 | .NOTPARALLEL: |
| 11 | |
Lv Zheng | 37645d6 | 2015-12-03 10:43:07 +0800 | [diff] [blame] | 12 | all: acpidbg acpidump ec |
| 13 | clean: acpidbg_clean acpidump_clean ec_clean |
| 14 | install: acpidbg_install acpidump_install ec_install |
| 15 | uninstall: acpidbg_uninstall acpidump_uninstall ec_uninstall |
Lv Zheng | f677b30 | 2014-01-15 12:04:09 +0800 | [diff] [blame] | 16 | |
Lv Zheng | 37645d6 | 2015-12-03 10:43:07 +0800 | [diff] [blame] | 17 | acpidbg acpidump ec: FORCE |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 18 | $(call descend,tools/$@,all) |
Lv Zheng | 37645d6 | 2015-12-03 10:43:07 +0800 | [diff] [blame] | 19 | acpidbg_clean acpidump_clean ec_clean: |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 20 | $(call descend,tools/$(@:_clean=),clean) |
Lv Zheng | 37645d6 | 2015-12-03 10:43:07 +0800 | [diff] [blame] | 21 | acpidbg_install acpidump_install ec_install: |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 22 | $(call descend,tools/$(@:_install=),install) |
Lv Zheng | 37645d6 | 2015-12-03 10:43:07 +0800 | [diff] [blame] | 23 | acpidbg_uninstall acpidump_uninstall ec_uninstall: |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 24 | $(call descend,tools/$(@:_uninstall=),uninstall) |
Thomas Renninger | d7cddbb | 2014-04-07 15:16:57 +0200 | [diff] [blame] | 25 | |
Lv Zheng | 391fc23 | 2015-07-28 13:25:25 +0800 | [diff] [blame] | 26 | .PHONY: FORCE |