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 # 13 include ../Makefile.config 14 FINAL_PROG = ../$(BINDIR)/acpidump 15 PROG = $(OBJDIR)/acpidump 16 17 # 18 # Search paths for source files 19 # 20 vpath %.c \ 21 $(ACPIDUMP)\ 22 $(ACPICA_TABLES)\ 23 $(ACPICA_UTILITIES)\ 24 $(ACPICA_COMMON)\ 25 $(ACPICA_OSL) 26 27 HEADERS = \ 28 $(wildcard $(ACPIDUMP)/*.h) 29 30 OBJECTS = \ 31 $(OBJDIR)/apdump.o\ 32 $(OBJDIR)/apfiles.o\ 33 $(OBJDIR)/apmain.o\ 34 $(OBJDIR)/cmfsize.o\ 35 $(OBJDIR)/getopt.o\ 36 $(OBJDIR)/oslibcfs.o\ 37 $(OBJDIR)/osunixdir.o\ 38 $(OBJDIR)/osunixmap.o\ 39 $(OBJDIR)/osunixxf.o\ 40 $(OBJDIR)/tbprint.o\ 41 $(OBJDIR)/tbxfroot.o\ 42 $(OBJDIR)/utbuffer.o\ 43 $(OBJDIR)/utdebug.o\ 44 $(OBJDIR)/utexcep.o\ 45 $(OBJDIR)/utglobal.o\ 46 $(OBJDIR)/utmath.o\ 47 $(OBJDIR)/utnonansi.o\ 48 $(OBJDIR)/utprint.o\ 49 $(OBJDIR)/utstring.o\ 50 $(OBJDIR)/utxferror.o 51 52 # 53 # Per-host interfaces 54 # 55 ifeq ($(HOST), _DragonFly) 56 HOST_FAMILY = BSD 57 endif 58 59 ifeq ($(HOST), _FreeBSD) 60 HOST_FAMILY = BSD 61 endif 62 63 ifeq ($(HOST), _NetBSD) 64 HOST_FAMILY = BSD 65 endif 66 67 ifeq ($(HOST_FAMILY), BSD) 68 OBJECTS += \ 69 $(OBJDIR)/osbsdtbl.o 70 else 71 OBJECTS += \ 72 $(OBJDIR)/oslinuxtbl.o 73 endif 74 75 # 76 # Flags specific to acpidump 77 # 78 CFLAGS += \ 79 -DACPI_DUMP_APP\ 80 -I$(ACPIDUMP) 81 82 # 83 # Common Rules 84 # 85 include ../Makefile.rules 86