2014-01-15 04:04:09 +00:00
|
|
|
# tools/power/acpi/Makefile - ACPI tool Makefile
|
|
|
|
#
|
|
|
|
# Copyright (c) 2013, Intel Corporation
|
|
|
|
# Author: Lv Zheng <lv.zheng@intel.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; version 2
|
|
|
|
# of the License.
|
|
|
|
|
2015-07-28 05:25:25 +00:00
|
|
|
include ../../scripts/Makefile.include
|
|
|
|
|
2015-12-03 02:43:07 +00:00
|
|
|
all: acpidbg acpidump ec
|
|
|
|
clean: acpidbg_clean acpidump_clean ec_clean
|
|
|
|
install: acpidbg_install acpidump_install ec_install
|
|
|
|
uninstall: acpidbg_uninstall acpidump_uninstall ec_uninstall
|
2015-07-28 05:25:25 +00:00
|
|
|
|
2015-12-03 02:43:07 +00:00
|
|
|
acpidbg acpidump ec: FORCE
|
2015-07-28 05:25:25 +00:00
|
|
|
$(call descend,tools/$@,all)
|
2015-12-03 02:43:07 +00:00
|
|
|
acpidbg_clean acpidump_clean ec_clean:
|
2015-07-28 05:25:25 +00:00
|
|
|
$(call descend,tools/$(@:_clean=),clean)
|
2015-12-03 02:43:07 +00:00
|
|
|
acpidbg_install acpidump_install ec_install:
|
2015-07-28 05:25:25 +00:00
|
|
|
$(call descend,tools/$(@:_install=),install)
|
2015-12-03 02:43:07 +00:00
|
|
|
acpidbg_uninstall acpidump_uninstall ec_uninstall:
|
2015-07-28 05:25:25 +00:00
|
|
|
$(call descend,tools/$(@:_uninstall=),uninstall)
|
|
|
|
|
|
|
|
.PHONY: FORCE
|