GNU Linux-libre 4.14.254-gnu1
[releases.git] / tools / power / acpi / tools / acpidbg / Makefile
1 # tools/power/acpi/tools/acpidbg/Makefile - ACPI tool Makefile
2 #
3 # Copyright (c) 2015, 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
11 include ../../Makefile.config
12
13 TOOL = acpidbg
14 vpath %.c \
15         ../../../../../drivers/acpi/acpica\
16         ../../common\
17         ../../os_specific/service_layers\
18         .
19 CFLAGS += -DACPI_APPLICATION -DACPI_SINGLE_THREAD -DACPI_DEBUGGER\
20         -I.
21 LDFLAGS += -lpthread
22 TOOL_OBJS = \
23         acpidbg.o
24
25 include ../../Makefile.rules