1#
2# acpihelp - ACPI Help utility. Displays ASL operator syntax and
3# information about ACPI predefined names.
4#
5
6#
7# Note: This makefile is intended to be used from within the native
8# ACPICA directory structure, from under generate/unix. It specifically
9# places all object files in a generate/unix subdirectory, not within
10# the various ACPICA source directories. This prevents collisions
11# between different compilations of the same source file with different
12# compile options, and prevents pollution of the source code.
13#
14include ../Makefile.config
15FINAL_PROG = ../$(BINDIR)/acpihelp
16PROG = $(OBJDIR)/acpihelp
17
18#
19# Search paths for source files
20#
21vpath %.c \
22    $(ACPIHELP)\
23    $(ACPICA_COMMON)\
24    $(ACPICA_UTILITIES)\
25    $(ACPICA_OSL)
26
27HEADERS = \
28    $(wildcard $(ACPIHELP)/*.h)
29
30OBJECTS = \
31	$(OBJDIR)/ahamlops.o\
32	$(OBJDIR)/ahaslkey.o\
33	$(OBJDIR)/ahaslops.o\
34	$(OBJDIR)/ahdecode.o\
35	$(OBJDIR)/ahids.o\
36	$(OBJDIR)/ahpredef.o\
37	$(OBJDIR)/ahmain.o\
38	$(OBJDIR)/ahtable.o\
39	$(OBJDIR)/ahuuids.o\
40	$(OBJDIR)/getopt.o\
41	$(OBJDIR)/oslibcfs.o\
42	$(OBJDIR)/osunixxf.o\
43	$(OBJDIR)/utdebug.o\
44	$(OBJDIR)/utexcep.o\
45	$(OBJDIR)/utglobal.o\
46	$(OBJDIR)/uthex.o\
47	$(OBJDIR)/utmath.o\
48	$(OBJDIR)/utnonansi.o\
49	$(OBJDIR)/utpredef.o\
50	$(OBJDIR)/utprint.o\
51	$(OBJDIR)/utuuid.o
52
53#
54# Flags specific to acpihelp
55#
56CFLAGS += \
57    -DACPI_HELP_APP\
58    -I$(ACPIHELP)
59
60#
61# Common Rules
62#
63include ../Makefile.rules
64