1#
2# acpixtract - extract binary ACPI tables from acpidump text output
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)/acpixtract
15PROG = $(OBJDIR)/acpixtract
16
17#
18# Search paths for source files
19#
20vpath %.c \
21    $(ACPIXTRACT)\
22    $(ACPICA_UTILITIES)\
23    $(ACPICA_COMMON)\
24    $(ACPICA_OSL)
25
26HEADERS = \
27    $(wildcard $(ACPIXTRACT)/*.h)
28
29OBJECTS = \
30    $(OBJDIR)/acpixtract.o\
31    $(OBJDIR)/axmain.o\
32    $(OBJDIR)/getopt.o\
33    $(OBJDIR)/oslibcfs.o\
34    $(OBJDIR)/osunixxf.o\
35    $(OBJDIR)/utdebug.o\
36    $(OBJDIR)/utexcep.o\
37    $(OBJDIR)/utglobal.o\
38    $(OBJDIR)/utmath.o\
39    $(OBJDIR)/utprint.o\
40    $(OBJDIR)/utxferror.o
41
42#
43# Flags specific to acpixtract
44#
45CFLAGS += \
46    -DACPI_XTRACT_APP
47
48#
49# Common Rules
50#
51include ../Makefile.rules
52