]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
tools/power/acpi: Enable build for EC userspace tool
authorLv Zheng <lv.zheng@intel.com>
Tue, 28 Jul 2015 05:25:32 +0000 (13:25 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 31 Jul 2015 21:39:31 +0000 (23:39 +0200)
This patch allows EC userspace tool to be built as an ACPI tool.

Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
tools/power/acpi/Makefile
tools/power/acpi/tools/ec/Makefile

index 3d052377b440a1503060b751ef14c85ad207c41d..e882c832013558bc252963742f97afe21273e1e8 100644 (file)
 
 include ../../scripts/Makefile.include
 
-all: acpidump
-clean: acpidump_clean
-install: acpidump_install
-uninstall: acpidump_uninstall
+all: acpidump ec
+clean: acpidump_clean ec_clean
+install: acpidump_install ec_install
+uninstall: acpidump_uninstall ec_uninstall
 
-acpidump: FORCE
+acpidump ec: FORCE
        $(call descend,tools/$@,all)
-acpidump_clean:
+acpidump_clean ec_clean:
        $(call descend,tools/$(@:_clean=),clean)
-acpidump_install:
+acpidump_install ec_install:
        $(call descend,tools/$(@:_install=),install)
-acpidump_uninstall:
+acpidump_uninstall ec_uninstall:
        $(call descend,tools/$(@:_uninstall=),uninstall)
 
 .PHONY: FORCE
index b7b0b929bd3270354067538fab1d659f3e9c2b5a..75d8a127b6eee08e51fa0b0a043f2068a56f25bf 100644 (file)
@@ -1,22 +1,17 @@
-ec_access: ec_access.o
-       $(ECHO) "  LD      " $@
-       $(QUIET) $(LD) $(CFLAGS) $(LDFLAGS) $< -o $@
-       $(QUIET) $(STRIPCMD) $@
+# tools/power/acpi/tools/acpidump/Makefile - ACPI tool Makefile
+#
+# Copyright (c) 2015, 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.
 
-%.o: %.c
-       $(ECHO) "  CC      " $@
-       $(QUIET) $(CC) -c $(CFLAGS) -o $@ $<
+include ../../Makefile.config
 
-all: ec_access
+TOOL = ec
+TOOL_OBJS = \
+       ec_access.o
 
-install:
-       $(INSTALL) -d $(DESTDIR)${sbindir}
-       $(INSTALL_PROGRAM) ec_access $(DESTDIR)${sbindir}
-
-uninstall:
-       - rm -f $(DESTDIR)${sbindir}/ec_access
-
-clean:
-       -rm -f $(OUTPUT)ec_access
-
-.PHONY: all install uninstall
+include ../../Makefile.rules