mirror of
https://github.com/acpica/acpica/
synced 2024-12-26 20:29:48 +03:00
3e45e0f238
1) Add OPT_CFLAGS to allow the warning flags to by overriden by the command line. Thomas Renninger (trenn@suse.de) 2) Eliminate extraneous spaces from the makefile execution output.
42 lines
919 B
Makefile
42 lines
919 B
Makefile
#
|
|
# acpixtract - extract binary ACPI tables from acpidump text output
|
|
#
|
|
|
|
#
|
|
# Note: This makefile is intended to be used from within the native
|
|
# ACPICA directory structure, from under generate/unix. It specifically
|
|
# places all object files in a generate/unix subdirectory, not within
|
|
# the various ACPICA source directories. This prevents collisions
|
|
# between different compilations of the same source file with different
|
|
# compile options, and prevents pollution of the source code.
|
|
#
|
|
include ../Makefile.config
|
|
FINAL_PROG = ../$(BINDIR)/acpixtract
|
|
PROG = $(OBJDIR)/acpixtract
|
|
|
|
#
|
|
# Search paths for source files
|
|
#
|
|
vpath %.c \
|
|
$(ACPIXTRACT)\
|
|
$(ACPICA_COMMON)
|
|
|
|
HEADERS = \
|
|
$(wildcard $(ACPIXTRACT)/*.h)
|
|
|
|
OBJECTS = \
|
|
$(OBJDIR)/acpixtract.o\
|
|
$(OBJDIR)/axmain.o\
|
|
$(OBJDIR)/getopt.o
|
|
|
|
#
|
|
# Flags specific to acpixtract
|
|
#
|
|
CFLAGS += \
|
|
-DACPI_XTRACT_APP
|
|
|
|
#
|
|
# Common Rules
|
|
#
|
|
include ../Makefile.rules
|