1#
2# acpidump - ACPI table dump utility (binary to ascii hex)
3#
4
5#
6# Note: This makefile is intended to be used from within the native
7# ACPICA directory structure, from under generate/unix. It specifically
8# places all object files in a generate/unix subdirectory, not within
9# the various ACPICA source directories. This prevents collisions
10# between different compilations of the same source file with different
11# compile options, and prevents pollution of the source code.
12#
13include ../Makefile.config
14FINAL_PROG = ../$(BINDIR)/acpidump
15PROG = $(OBJDIR)/acpidump
16
17#
18# Search paths for source files
19#
20vpath %.c \
21    $(ACPIDUMP)\
22    $(ACPICA_TABLES)\
23    $(ACPICA_UTILITIES)\
24    $(ACPICA_COMMON)\
25    $(ACPICA_OSL)
26
27HEADERS = \
28    $(wildcard $(ACPIDUMP)/*.h)
29
30OBJECTS = \
31	$(OBJDIR)/apdump.o\
32	$(OBJDIR)/apfiles.o\
33	$(OBJDIR)/apmain.o\
34	$(OBJDIR)/cmfsize.o\
35	$(OBJDIR)/getopt.o\
36	$(OBJDIR)/osunixdir.o\
37	$(OBJDIR)/osunixmap.o\
38	$(OBJDIR)/osunixxf.o\
39	$(OBJDIR)/tbprint.o\
40	$(OBJDIR)/tbxfroot.o\
41	$(OBJDIR)/utascii.o\
42	$(OBJDIR)/utbuffer.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)/utstring.o\
50	$(OBJDIR)/utstrtoul64.o\
51	$(OBJDIR)/utxferror.o
52
53#
54# Per-host interfaces
55#
56ifeq ($(HOST), _DragonFly)
57HOST_FAMILY = BSD
58endif
59
60ifeq ($(HOST), _FreeBSD)
61HOST_FAMILY = BSD
62endif
63
64ifeq ($(HOST), _NetBSD)
65HOST_FAMILY = BSD
66endif
67
68ifeq ($(HOST), _QNX)
69HOST_FAMILY = BSD
70endif
71
72ifeq ($(HOST_FAMILY), BSD)
73OBJECTS += \
74	$(OBJDIR)/osbsdtbl.o
75else
76OBJECTS += \
77	$(OBJDIR)/oslinuxtbl.o
78endif
79
80#
81# Flags specific to acpidump
82#
83CFLAGS += \
84    -DACPI_DUMP_APP\
85    -I$(ACPIDUMP)
86
87#
88# Common Rules
89#
90include ../Makefile.rules
91